Interface MutableDoubleStackFactory
-
public interface MutableDoubleStackFactoryA factory which creates instances of typeMutableDoubleStack. This file was automatically generated from template file mutablePrimitiveStackFactory.stg.- Since:
- 6.0.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description MutableDoubleStackempty()MutableDoubleStackof()Same asempty().MutableDoubleStackof(double... items)Same aswith(double[]).MutableDoubleStackofAll(Iterable<Double> iterable)Same aswithAll(Iterable).MutableDoubleStackofAll(DoubleStream items)MutableDoubleStackofAll(DoubleIterable items)Same aswithAll(DoubleIterable).MutableDoubleStackofAllReversed(DoubleIterable items)Same aswithAllReversed(DoubleIterable).MutableDoubleStackwith()Same asempty().MutableDoubleStackwith(double... items)MutableDoubleStackwithAll(Iterable<Double> iterable)MutableDoubleStackwithAll(DoubleStream items)MutableDoubleStackwithAll(DoubleIterable items)MutableDoubleStackwithAllReversed(DoubleIterable items)
-
-
-
Method Detail
-
empty
MutableDoubleStack empty()
-
of
MutableDoubleStack of()
Same asempty().
-
with
MutableDoubleStack with()
Same asempty().
-
of
MutableDoubleStack of(double... items)
Same aswith(double[]).
-
with
MutableDoubleStack with(double... items)
-
ofAll
MutableDoubleStack ofAll(DoubleIterable items)
Same aswithAll(DoubleIterable).
-
withAll
MutableDoubleStack withAll(DoubleIterable items)
-
ofAll
MutableDoubleStack ofAll(Iterable<Double> iterable)
Same aswithAll(Iterable).
-
withAll
MutableDoubleStack withAll(Iterable<Double> iterable)
-
ofAllReversed
MutableDoubleStack ofAllReversed(DoubleIterable items)
Same aswithAllReversed(DoubleIterable).
-
withAllReversed
MutableDoubleStack withAllReversed(DoubleIterable items)
-
ofAll
MutableDoubleStack ofAll(DoubleStream items)
- Since:
- 9.0
-
withAll
MutableDoubleStack withAll(DoubleStream items)
- Since:
- 9.0
-
-