Interface MutableFloatStackFactory
-
public interface MutableFloatStackFactoryA factory which creates instances of typeMutableFloatStack. 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 MutableFloatStackempty()MutableFloatStackof()Same asempty().MutableFloatStackof(float... items)Same aswith(float[]).MutableFloatStackofAll(Iterable<Float> iterable)Same aswithAll(Iterable).MutableFloatStackofAll(FloatIterable items)Same aswithAll(FloatIterable).MutableFloatStackofAllReversed(FloatIterable items)Same aswithAllReversed(FloatIterable).MutableFloatStackwith()Same asempty().MutableFloatStackwith(float... items)MutableFloatStackwithAll(Iterable<Float> iterable)MutableFloatStackwithAll(FloatIterable items)MutableFloatStackwithAllReversed(FloatIterable items)
-
-
-
Method Detail
-
empty
MutableFloatStack empty()
-
of
MutableFloatStack of()
Same asempty().
-
with
MutableFloatStack with()
Same asempty().
-
of
MutableFloatStack of(float... items)
Same aswith(float[]).
-
with
MutableFloatStack with(float... items)
-
ofAll
MutableFloatStack ofAll(FloatIterable items)
Same aswithAll(FloatIterable).
-
withAll
MutableFloatStack withAll(FloatIterable items)
-
ofAll
MutableFloatStack ofAll(Iterable<Float> iterable)
Same aswithAll(Iterable).
-
withAll
MutableFloatStack withAll(Iterable<Float> iterable)
-
ofAllReversed
MutableFloatStack ofAllReversed(FloatIterable items)
Same aswithAllReversed(FloatIterable).
-
withAllReversed
MutableFloatStack withAllReversed(FloatIterable items)
-
-