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.
-
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 ImmutableByteStackImmutableByteStack.rejectWithIndex(ByteIntPredicate predicate) Returns a new ImmutableByteStack excluding all elements with corresponding indexes matching the specified predicate.ImmutableByteStack.select(BytePredicate predicate) default ImmutableByteStackImmutableByteStack.selectWithIndex(ByteIntPredicate predicate) Returns a new ImmutableByteStack including all elements with corresponding indexes matching the specified predicate.default ImmutableByteStackImmutableByteStack.tap(ByteProcedure procedure) ByteStack.toImmutable()