Uses of Interface
org.eclipse.collections.api.stack.primitive.MutableByteStack
Packages that use MutableByteStack
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 MutableByteStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return MutableByteStackModifier and TypeMethodDescriptionMutableByteStackFactory.empty()
MutableByteStackFactory.of()
Same asMutableByteStackFactory.empty()
.MutableByteStackFactory.of
(byte... items) Same asMutableByteStackFactory.with(byte[])
.MutableByteStackFactory.ofAll
(ByteIterable items) MutableByteStackFactory.ofAllReversed
(ByteIterable items) MutableByteStackFactory.with()
Same asMutableByteStackFactory.empty()
.MutableByteStackFactory.with
(byte... items) MutableByteStackFactory.withAll
(ByteIterable items) MutableByteStackFactory.withAllReversed
(ByteIterable items) -
Uses of MutableByteStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return MutableByteStack -
Uses of MutableByteStack in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return MutableByteStackModifier and TypeMethodDescriptionMutableByteStack.asSynchronized()
MutableByteStack.asUnmodifiable()
default MutableByteStack
MutableByteStack.newEmpty()
Creates a new empty mutable version of the same stack type.MutableByteStack.reject
(BytePredicate predicate) default MutableByteStack
MutableByteStack.rejectWithIndex
(ByteIntPredicate predicate) Returns a new MutableByteStack excluding all elements with corresponding indexes matching the specified predicate.MutableByteStack.select
(BytePredicate predicate) default MutableByteStack
MutableByteStack.selectWithIndex
(ByteIntPredicate predicate) Returns a new MutableByteStack including all elements with corresponding indexes matching the specified predicate.default MutableByteStack
MutableByteStack.tap
(ByteProcedure procedure) -
Uses of MutableByteStack in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable that return MutableByteStackModifier and TypeMethodDescriptionArrayStack.collectByte
(ByteFunction<? super T> byteFunction) SynchronizedStack.collectByte
(ByteFunction<? super T> byteFunction) UnmodifiableStack.collectByte
(ByteFunction<? super T> byteFunction) -
Uses of MutableByteStack in org.eclipse.collections.impl.stack.mutable.primitive
Classes in org.eclipse.collections.impl.stack.mutable.primitive that implement MutableByteStackModifier and TypeClassDescriptionclass
ByteArrayStack is similar toArrayStack
, and is memory-optimized for byte primitives.class
A synchronized view of aMutableByteStack
.class
This file was automatically generated from template file unmodifiablePrimitiveStack.stg.Methods in org.eclipse.collections.impl.stack.mutable.primitive that return MutableByteStackModifier and TypeMethodDescriptionByteArrayStack.asSynchronized()
SynchronizedByteStack.asSynchronized()
UnmodifiableByteStack.asSynchronized()
ByteArrayStack.asUnmodifiable()
SynchronizedByteStack.asUnmodifiable()
UnmodifiableByteStack.asUnmodifiable()
MutableByteStackFactoryImpl.empty()
SynchronizedByteStack.newEmpty()
UnmodifiableByteStack.newEmpty()
MutableByteStackFactoryImpl.of()
MutableByteStackFactoryImpl.of
(byte... items) MutableByteStackFactoryImpl.ofAll
(ByteIterable items) MutableByteStackFactoryImpl.ofAllReversed
(ByteIterable items) ByteArrayStack.reject
(BytePredicate predicate) SynchronizedByteStack.reject
(BytePredicate predicate) UnmodifiableByteStack.reject
(BytePredicate predicate) SynchronizedByteStack.rejectWithIndex
(ByteIntPredicate predicate) Returns a new MutableByteStack excluding all elements with corresponding indexes matching the specified predicate.ByteArrayStack.select
(BytePredicate predicate) SynchronizedByteStack.select
(BytePredicate predicate) UnmodifiableByteStack.select
(BytePredicate predicate) SynchronizedByteStack.selectWithIndex
(ByteIntPredicate predicate) Returns a new MutableByteStack including all elements with corresponding indexes matching the specified predicate.MutableByteStackFactoryImpl.with()
MutableByteStackFactoryImpl.with
(byte... items) MutableByteStackFactoryImpl.withAll
(ByteIterable items) MutableByteStackFactoryImpl.withAllReversed
(ByteIterable items) Constructors in org.eclipse.collections.impl.stack.mutable.primitive with parameters of type MutableByteStack