Uses of Interface
org.eclipse.collections.api.stack.primitive.ImmutableByteStack
Packages that use ImmutableByteStack
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 immutable primitive stack interfaces.
This package contains implementations of the mutable primitive stack interfaces.
-
Uses of ImmutableByteStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return ImmutableByteStackModifier and TypeMethodDescriptionImmutableByteStackFactory.empty()
ImmutableByteStackFactory.of()
Same asImmutableByteStackFactory.empty()
.ImmutableByteStackFactory.of
(byte one) Same asImmutableByteStackFactory.with(byte)
.ImmutableByteStackFactory.of
(byte... items) ImmutableByteStackFactory.ofAll
(ByteIterable items) ImmutableByteStackFactory.ofAllReversed
(ByteIterable items) ImmutableByteStackFactory.with()
Same asImmutableByteStackFactory.empty()
.ImmutableByteStackFactory.with
(byte one) ImmutableByteStackFactory.with
(byte... items) ImmutableByteStackFactory.withAll
(ByteIterable items) ImmutableByteStackFactory.withAllReversed
(ByteIterable items) -
Uses of ImmutableByteStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableByteStackModifier and TypeMethodDescriptionImmutableStack.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of ImmutableByteStack in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return ImmutableByteStackModifier and TypeMethodDescriptionImmutableByteStack.pop()
ImmutableByteStack.pop
(int count) ImmutableByteStack.push
(byte item) ImmutableByteStack.reject
(BytePredicate predicate) default ImmutableByteStack
ImmutableByteStack.rejectWithIndex
(ByteIntPredicate predicate) Returns a new ImmutableByteStack excluding all elements with corresponding indexes matching the specified predicate.ImmutableByteStack.select
(BytePredicate predicate) default ImmutableByteStack
ImmutableByteStack.selectWithIndex
(ByteIntPredicate predicate) Returns a new ImmutableByteStack including all elements with corresponding indexes matching the specified predicate.default ImmutableByteStack
ImmutableByteStack.tap
(ByteProcedure procedure) ByteStack.toImmutable()
-
Uses of ImmutableByteStack in org.eclipse.collections.impl.stack.immutable.primitive
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return ImmutableByteStackModifier and TypeMethodDescriptionImmutableByteStackFactoryImpl.empty()
ImmutableByteStackFactoryImpl.of()
ImmutableByteStackFactoryImpl.of
(byte one) ImmutableByteStackFactoryImpl.of
(byte... items) ImmutableByteStackFactoryImpl.ofAll
(ByteIterable items) ImmutableByteStackFactoryImpl.ofAllReversed
(ByteIterable items) ImmutableByteStackFactoryImpl.with()
ImmutableByteStackFactoryImpl.with
(byte one) ImmutableByteStackFactoryImpl.with
(byte... items) ImmutableByteStackFactoryImpl.withAll
(ByteIterable items) ImmutableByteStackFactoryImpl.withAllReversed
(ByteIterable items) -
Uses of ImmutableByteStack in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return ImmutableByteStackModifier and TypeMethodDescriptionByteArrayStack.toImmutable()
SynchronizedByteStack.toImmutable()
UnmodifiableByteStack.toImmutable()