Uses of Interface
org.eclipse.collections.api.stack.primitive.MutableBooleanStack
Packages that use MutableBooleanStack
Package
Description
This package contains factory API for creating primitive stack instances.
This package contains interfaces for stack API.
This package contains mutable and immutable primitive stack API.
This package contains implementations of the
MutableStack interface.This package contains implementations of the mutable primitive stack interfaces.
-
Uses of MutableBooleanStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return MutableBooleanStackModifier and TypeMethodDescriptionMutableBooleanStackFactory.empty()MutableBooleanStackFactory.of()Same asMutableBooleanStackFactory.empty().MutableBooleanStackFactory.of(boolean... items) MutableBooleanStackFactory.ofAll(BooleanIterable items) MutableBooleanStackFactory.ofAllReversed(BooleanIterable items) MutableBooleanStackFactory.with()Same asMutableBooleanStackFactory.empty().MutableBooleanStackFactory.with(boolean... items) MutableBooleanStackFactory.withAll(BooleanIterable items) MutableBooleanStackFactory.withAllReversed(BooleanIterable items) -
Uses of MutableBooleanStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return MutableBooleanStackModifier and TypeMethodDescriptionMutableStack.collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of MutableBooleanStack in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return MutableBooleanStackModifier and TypeMethodDescriptionMutableBooleanStack.asSynchronized()MutableBooleanStack.asUnmodifiable()default MutableBooleanStackMutableBooleanStack.newEmpty()Creates a new empty mutable version of the same stack type.MutableBooleanStack.reject(BooleanPredicate predicate) default MutableBooleanStackMutableBooleanStack.rejectWithIndex(BooleanIntPredicate predicate) Returns a new MutableBooleanStack excluding all elements with corresponding indexes matching the specified predicate.MutableBooleanStack.select(BooleanPredicate predicate) default MutableBooleanStackMutableBooleanStack.selectWithIndex(BooleanIntPredicate predicate) Returns a new MutableBooleanStack including all elements with corresponding indexes matching the specified predicate.default MutableBooleanStackMutableBooleanStack.tap(BooleanProcedure procedure) -
Uses of MutableBooleanStack in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable that return MutableBooleanStackModifier and TypeMethodDescriptionArrayStack.collectBoolean(BooleanFunction<? super T> booleanFunction) SynchronizedStack.collectBoolean(BooleanFunction<? super T> booleanFunction) UnmodifiableStack.collectBoolean(BooleanFunction<? super T> booleanFunction) -
Uses of MutableBooleanStack in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement MutableBooleanStackModifier and TypeClassDescriptionclassBooleanArrayStack is similar toArrayStack, and is memory-optimized for boolean primitives.classA synchronized view of aMutableBooleanStack.classThis file was automatically generated from template file unmodifiablePrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableBooleanStackModifier and TypeMethodDescriptionBooleanArrayStack.asSynchronized()SynchronizedBooleanStack.asSynchronized()UnmodifiableBooleanStack.asSynchronized()BooleanArrayStack.asUnmodifiable()SynchronizedBooleanStack.asUnmodifiable()UnmodifiableBooleanStack.asUnmodifiable()MutableBooleanStackFactoryImpl.empty()SynchronizedBooleanStack.newEmpty()UnmodifiableBooleanStack.newEmpty()MutableBooleanStackFactoryImpl.of()MutableBooleanStackFactoryImpl.of(boolean... items) MutableBooleanStackFactoryImpl.ofAll(BooleanIterable items) MutableBooleanStackFactoryImpl.ofAllReversed(BooleanIterable items) BooleanArrayStack.reject(BooleanPredicate predicate) SynchronizedBooleanStack.reject(BooleanPredicate predicate) UnmodifiableBooleanStack.reject(BooleanPredicate predicate) SynchronizedBooleanStack.rejectWithIndex(BooleanIntPredicate predicate) Returns a new MutableBooleanStack excluding all elements with corresponding indexes matching the specified predicate.BooleanArrayStack.select(BooleanPredicate predicate) SynchronizedBooleanStack.select(BooleanPredicate predicate) UnmodifiableBooleanStack.select(BooleanPredicate predicate) SynchronizedBooleanStack.selectWithIndex(BooleanIntPredicate predicate) Returns a new MutableBooleanStack including all elements with corresponding indexes matching the specified predicate.MutableBooleanStackFactoryImpl.with()MutableBooleanStackFactoryImpl.with(boolean... items) MutableBooleanStackFactoryImpl.withAll(BooleanIterable items) MutableBooleanStackFactoryImpl.withAllReversed(BooleanIterable items) Constructors in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type MutableBooleanStackModifierConstructorDescriptionSynchronizedBooleanStack(MutableBooleanStack stack, Object newLock)