Interface MutableIntStackFactory
- All Known Implementing Classes:
MutableIntStackFactoryImpl
public interface MutableIntStackFactory
A factory which creates instances of type
MutableIntStack.
This file was automatically generated from template file mutablePrimitiveStackFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and TypeMethodDescriptionempty()of()Same asempty().of(int... items) Same aswith(int[]).Same aswithAll(Iterable).ofAll(IntIterable items) Same aswithAll(IntIterable).ofAllReversed(IntIterable items) Same aswithAllReversed(IntIterable).with()Same asempty().with(int... items) withAll(IntIterable items) withAllReversed(IntIterable items)
-
Method Details
-
empty
MutableIntStack empty() -
of
MutableIntStack of()Same asempty(). -
with
MutableIntStack with()Same asempty(). -
of
Same aswith(int[]). -
with
-
ofAll
Same aswithAll(IntIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAllReversed
Same aswithAllReversed(IntIterable). -
withAllReversed
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-