Interface MutableLongStackFactory
- All Known Implementing Classes:
MutableLongStackFactoryImpl
public interface MutableLongStackFactory
A factory which creates instances of type
MutableLongStack.
This file was automatically generated from template file mutablePrimitiveStackFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableLongStackempty()MutableLongStackof()Same asempty().MutableLongStackof(long... items)Same aswith(long[]).MutableLongStackofAll(Iterable<Long> iterable)Same aswithAll(Iterable).MutableLongStackofAll(LongStream items)MutableLongStackofAll(LongIterable items)Same aswithAll(LongIterable).MutableLongStackofAllReversed(LongIterable items)Same aswithAllReversed(LongIterable).MutableLongStackwith()Same asempty().MutableLongStackwith(long... items)MutableLongStackwithAll(Iterable<Long> iterable)MutableLongStackwithAll(LongStream items)MutableLongStackwithAll(LongIterable items)MutableLongStackwithAllReversed(LongIterable items)
-
Method Details
-
empty
MutableLongStack empty() -
of
MutableLongStack of()Same asempty(). -
with
MutableLongStack with()Same asempty(). -
of
Same aswith(long[]). -
with
-
ofAll
Same aswithAll(LongIterable). -
withAll
-
ofAll
Same aswithAll(Iterable). -
withAll
-
ofAllReversed
Same aswithAllReversed(LongIterable). -
withAllReversed
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-