Uses of Interface
org.eclipse.collections.api.stack.primitive.CharStack
-
Packages that use CharStack 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 CharStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return CharStack Modifier and Type Method Description CharStack
StackIterable. collectChar(CharFunction<? super T> charFunction)
-
Uses of CharStack in org.eclipse.collections.api.stack.primitive
Subinterfaces of CharStack in org.eclipse.collections.api.stack.primitive Modifier and Type Interface Description interface
ImmutableCharStack
This file was automatically generated from template file immutablePrimitiveStack.stg.interface
MutableCharStack
This file was automatically generated from template file mutablePrimitiveStack.stg.Methods in org.eclipse.collections.api.stack.primitive that return CharStack Modifier and Type Method Description CharStack
CharStack. reject(CharPredicate predicate)
default CharStack
CharStack. rejectWithIndex(CharIntPredicate predicate)
Returns a new CharStack excluding all elements with corresponding indexes matching the specified predicate.CharStack
CharStack. select(CharPredicate predicate)
default CharStack
CharStack. selectWithIndex(CharIntPredicate predicate)
Returns a new CharStack including all elements with corresponding indexes matching the specified predicate.default CharStack
CharStack. tap(CharProcedure procedure)
-
Uses of CharStack in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement CharStack Modifier and Type Class Description (package private) class
ImmutableCharArrayStack
ImmutableCharArrayStack is the non-modifiable equivalent ofCharArrayStack
.(package private) class
ImmutableCharEmptyStack
ImmutableCharEmptyStack is an optimization forImmutableCharStack
of size 0.(package private) class
ImmutableCharSingletonStack
ImmutableCharSingletonStack is an optimization forImmutableCharStack
of size 1.Fields in org.eclipse.collections.impl.stack.immutable.primitive declared as CharStack Modifier and Type Field Description private CharStack
ImmutableCharArrayStack.ImmutableCharStackSerializationProxy. stack
Constructors in org.eclipse.collections.impl.stack.immutable.primitive with parameters of type CharStack Constructor Description ImmutableCharStackSerializationProxy(CharStack stack)
-
Uses of CharStack in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement CharStack Modifier and Type Class Description class
CharArrayStack
CharArrayStack is similar toArrayStack
, and is memory-optimized for char primitives.class
SynchronizedCharStack
A synchronized view of aMutableCharStack
.class
UnmodifiableCharStack
This file was automatically generated from template file unmodifiablePrimitiveStack.stg. -
Uses of CharStack in org.eclipse.collections.impl.stack.primitive
Classes in org.eclipse.collections.impl.stack.primitive that implement CharStack Modifier and Type Class Description class
AbstractCharStack
This file was automatically generated from template file abstractPrimitiveStack.stg.
-