Uses of Interface
org.eclipse.collections.api.stack.primitive.MutableCharStack
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 MutableCharStack in org.eclipse.collections.api.factory.stack.primitive
Modifier and TypeMethodDescriptionMutableCharStackFactory.empty()
MutableCharStackFactory.of()
Same asMutableCharStackFactory.empty()
.MutableCharStackFactory.of
(char... items) Same asMutableCharStackFactory.with(char[])
.MutableCharStackFactory.ofAll
(CharIterable items) MutableCharStackFactory.ofAllReversed
(CharIterable items) MutableCharStackFactory.with()
Same asMutableCharStackFactory.empty()
.MutableCharStackFactory.with
(char... items) MutableCharStackFactory.withAll
(CharIterable items) MutableCharStackFactory.withAllReversed
(CharIterable items) -
Uses of MutableCharStack in org.eclipse.collections.api.stack
-
Uses of MutableCharStack in org.eclipse.collections.api.stack.primitive
Modifier and TypeMethodDescriptionMutableCharStack.asSynchronized()
MutableCharStack.asUnmodifiable()
default MutableCharStack
MutableCharStack.newEmpty()
Creates a new empty mutable version of the same stack type.MutableCharStack.reject
(CharPredicate predicate) default MutableCharStack
MutableCharStack.rejectWithIndex
(CharIntPredicate predicate) Returns a new MutableCharStack excluding all elements with corresponding indexes matching the specified predicate.MutableCharStack.select
(CharPredicate predicate) default MutableCharStack
MutableCharStack.selectWithIndex
(CharIntPredicate predicate) Returns a new MutableCharStack including all elements with corresponding indexes matching the specified predicate.default MutableCharStack
MutableCharStack.tap
(CharProcedure procedure) -
Uses of MutableCharStack in org.eclipse.collections.impl.stack.mutable
Modifier and TypeMethodDescriptionArrayStack.collectChar
(CharFunction<? super T> charFunction) SynchronizedStack.collectChar
(CharFunction<? super T> charFunction) UnmodifiableStack.collectChar
(CharFunction<? super T> charFunction) -
Uses of MutableCharStack in org.eclipse.collections.impl.stack.mutable.primitive
Modifier and TypeClassDescriptionclass
CharArrayStack is similar toArrayStack
, and is memory-optimized for char primitives.class
A synchronized view of aMutableCharStack
.class
This file was automatically generated from template file unmodifiablePrimitiveStack.stg.Modifier and TypeMethodDescriptionCharArrayStack.asSynchronized()
SynchronizedCharStack.asSynchronized()
UnmodifiableCharStack.asSynchronized()
CharArrayStack.asUnmodifiable()
SynchronizedCharStack.asUnmodifiable()
UnmodifiableCharStack.asUnmodifiable()
MutableCharStackFactoryImpl.empty()
SynchronizedCharStack.newEmpty()
UnmodifiableCharStack.newEmpty()
MutableCharStackFactoryImpl.of()
MutableCharStackFactoryImpl.of
(char... items) MutableCharStackFactoryImpl.ofAll
(CharIterable items) MutableCharStackFactoryImpl.ofAllReversed
(CharIterable items) CharArrayStack.reject
(CharPredicate predicate) SynchronizedCharStack.reject
(CharPredicate predicate) UnmodifiableCharStack.reject
(CharPredicate predicate) SynchronizedCharStack.rejectWithIndex
(CharIntPredicate predicate) Returns a new MutableCharStack excluding all elements with corresponding indexes matching the specified predicate.CharArrayStack.select
(CharPredicate predicate) SynchronizedCharStack.select
(CharPredicate predicate) UnmodifiableCharStack.select
(CharPredicate predicate) SynchronizedCharStack.selectWithIndex
(CharIntPredicate predicate) Returns a new MutableCharStack including all elements with corresponding indexes matching the specified predicate.MutableCharStackFactoryImpl.with()
MutableCharStackFactoryImpl.with
(char... items) MutableCharStackFactoryImpl.withAll
(CharIterable items) MutableCharStackFactoryImpl.withAllReversed
(CharIterable items)