Interface MutableDoubleStackFactory
- All Known Implementing Classes:
MutableDoubleStackFactoryImpl
public interface MutableDoubleStackFactory
A factory which creates instances of type
MutableDoubleStack
.
This file was automatically generated from template file mutablePrimitiveStackFactory.stg.- Since:
- 6.0.
-
Method Summary
Modifier and Type Method Description MutableDoubleStack
empty()
MutableDoubleStack
of()
Same asempty()
.MutableDoubleStack
of(double... items)
Same aswith(double[])
.MutableDoubleStack
ofAll(Iterable<Double> iterable)
Same aswithAll(Iterable)
.MutableDoubleStack
ofAll(DoubleStream items)
MutableDoubleStack
ofAll(DoubleIterable items)
Same aswithAll(DoubleIterable)
.MutableDoubleStack
ofAllReversed(DoubleIterable items)
Same aswithAllReversed(DoubleIterable)
.MutableDoubleStack
with()
Same asempty()
.MutableDoubleStack
with(double... items)
MutableDoubleStack
withAll(Iterable<Double> iterable)
MutableDoubleStack
withAll(DoubleStream items)
MutableDoubleStack
withAll(DoubleIterable items)
MutableDoubleStack
withAllReversed(DoubleIterable items)
-
Method Details
-
empty
MutableDoubleStack empty() -
of
MutableDoubleStack of()Same asempty()
. -
with
MutableDoubleStack with()Same asempty()
. -
of
Same aswith(double[])
. -
with
-
ofAll
Same aswithAll(DoubleIterable)
. -
withAll
-
ofAll
Same aswithAll(Iterable)
. -
withAll
-
ofAllReversed
Same aswithAllReversed(DoubleIterable)
. -
withAllReversed
-
ofAll
- Since:
- 9.0
-
withAll
- Since:
- 9.0
-