Uses of Interface
org.eclipse.collections.api.stack.primitive.BooleanStack
-
Packages that use BooleanStack 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 BooleanStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return BooleanStack Modifier and Type Method Description BooleanStack
StackIterable. collectBoolean(BooleanFunction<? super T> booleanFunction)
-
Uses of BooleanStack in org.eclipse.collections.api.stack.primitive
Subinterfaces of BooleanStack in org.eclipse.collections.api.stack.primitive Modifier and Type Interface Description interface
ImmutableBooleanStack
This file was automatically generated from template file immutablePrimitiveStack.stg.interface
MutableBooleanStack
This file was automatically generated from template file mutablePrimitiveStack.stg.Methods in org.eclipse.collections.api.stack.primitive that return BooleanStack Modifier and Type Method Description BooleanStack
BooleanStack. reject(BooleanPredicate predicate)
default BooleanStack
BooleanStack. rejectWithIndex(BooleanIntPredicate predicate)
Returns a new BooleanStack excluding all elements with corresponding indexes matching the specified predicate.BooleanStack
BooleanStack. select(BooleanPredicate predicate)
default BooleanStack
BooleanStack. selectWithIndex(BooleanIntPredicate predicate)
Returns a new BooleanStack including all elements with corresponding indexes matching the specified predicate.default BooleanStack
BooleanStack. tap(BooleanProcedure procedure)
-
Uses of BooleanStack in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement BooleanStack Modifier and Type Class Description (package private) class
ImmutableBooleanArrayStack
ImmutableBooleanArrayStack is the non-modifiable equivalent ofBooleanArrayStack
.(package private) class
ImmutableBooleanEmptyStack
ImmutableBooleanEmptyStack is an optimization forImmutableBooleanStack
of size 0.(package private) class
ImmutableBooleanSingletonStack
ImmutableBooleanSingletonStack is an optimization forImmutableBooleanStack
of size 1.Fields in org.eclipse.collections.impl.stack.immutable.primitive declared as BooleanStack Modifier and Type Field Description private BooleanStack
ImmutableBooleanArrayStack.ImmutableBooleanStackSerializationProxy. stack
Constructors in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type BooleanStack Constructor Description ImmutableBooleanStackSerializationProxy(BooleanStack stack)
-
Uses of BooleanStack in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement BooleanStack Modifier and Type Class Description class
BooleanArrayStack
BooleanArrayStack is similar toArrayStack
, and is memory-optimized for boolean primitives.class
SynchronizedBooleanStack
A synchronized view of aMutableBooleanStack
.class
UnmodifiableBooleanStack
This file was automatically generated from template file unmodifiablePrimitiveStack.stg. -
Uses of BooleanStack in org.eclipse.collections.impl.stack.primitive
Classes in org.eclipse.collections.impl.stack.primitive that implement BooleanStack Modifier and Type Class Description class
AbstractBooleanStack
This file was automatically generated from template file abstractPrimitiveStack.stg.
-