Uses of Interface
org.eclipse.collections.api.stack.primitive.FloatStack
-
Packages that use FloatStack Package Description org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.api.stack.primitive This package contains mutable and immutable primitive stack API.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stack.primitive -
-
Uses of FloatStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return FloatStack Modifier and Type Method Description FloatStack
StackIterable. collectFloat(FloatFunction<? super T> floatFunction)
-
Uses of FloatStack in org.eclipse.collections.api.stack.primitive
Subinterfaces of FloatStack in org.eclipse.collections.api.stack.primitive Modifier and Type Interface Description interface
ImmutableFloatStack
This file was automatically generated from template file immutablePrimitiveStack.stg.interface
MutableFloatStack
This file was automatically generated from template file mutablePrimitiveStack.stg.Methods in org.eclipse.collections.api.stack.primitive that return FloatStack Modifier and Type Method Description FloatStack
FloatStack. reject(FloatPredicate predicate)
default FloatStack
FloatStack. rejectWithIndex(FloatIntPredicate predicate)
Returns a new FloatStack excluding all elements with corresponding indexes matching the specified predicate.FloatStack
FloatStack. select(FloatPredicate predicate)
default FloatStack
FloatStack. selectWithIndex(FloatIntPredicate predicate)
Returns a new FloatStack including all elements with corresponding indexes matching the specified predicate.default FloatStack
FloatStack. tap(FloatProcedure procedure)
-
Uses of FloatStack in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement FloatStack Modifier and Type Class Description (package private) class
ImmutableFloatArrayStack
ImmutableFloatArrayStack is the non-modifiable equivalent ofFloatArrayStack
.(package private) class
ImmutableFloatEmptyStack
ImmutableFloatEmptyStack is an optimization forImmutableFloatStack
of size 0.(package private) class
ImmutableFloatSingletonStack
ImmutableFloatSingletonStack is an optimization forImmutableFloatStack
of size 1.Fields in org.eclipse.collections.impl.stack.immutable.primitive declared as FloatStack Modifier and Type Field Description private FloatStack
ImmutableFloatArrayStack.ImmutableFloatStackSerializationProxy. stack
Constructors in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type FloatStack Constructor Description ImmutableFloatStackSerializationProxy(FloatStack stack)
-
Uses of FloatStack in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement FloatStack Modifier and Type Class Description class
FloatArrayStack
FloatArrayStack is similar toArrayStack
, and is memory-optimized for float primitives.class
SynchronizedFloatStack
A synchronized view of aMutableFloatStack
.class
UnmodifiableFloatStack
This file was automatically generated from template file unmodifiablePrimitiveStack.stg. -
Uses of FloatStack in org.eclipse.collections.impl.stack.primitive
Classes in org.eclipse.collections.impl.stack.primitive that implement FloatStack Modifier and Type Class Description class
AbstractFloatStack
This file was automatically generated from template file abstractPrimitiveStack.stg.
-