Uses of Interface
org.eclipse.collections.api.stack.primitive.ImmutableByteStack
-
Packages that use ImmutableByteStack Package Description org.eclipse.collections.api.factory.stack.primitive This package contains factory API for creating primitive stack instances.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. -
-
Uses of ImmutableByteStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return ImmutableByteStack Modifier and Type Method Description ImmutableByteStackImmutableByteStackFactory. empty()ImmutableByteStackImmutableByteStackFactory. of()Same asImmutableByteStackFactory.empty().ImmutableByteStackImmutableByteStackFactory. of(byte one)Same asImmutableByteStackFactory.with(byte).ImmutableByteStackImmutableByteStackFactory. of(byte... items)ImmutableByteStackImmutableByteStackFactory. ofAll(Iterable<Byte> iterable)ImmutableByteStackImmutableByteStackFactory. ofAll(ByteIterable items)ImmutableByteStackImmutableByteStackFactory. ofAllReversed(ByteIterable items)ImmutableByteStackImmutableByteStackFactory. with()Same asImmutableByteStackFactory.empty().ImmutableByteStackImmutableByteStackFactory. with(byte one)ImmutableByteStackImmutableByteStackFactory. with(byte... items)ImmutableByteStackImmutableByteStackFactory. withAll(Iterable<Byte> iterable)ImmutableByteStackImmutableByteStackFactory. withAll(ByteIterable items)ImmutableByteStackImmutableByteStackFactory. withAllReversed(ByteIterable items) -
Uses of ImmutableByteStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableByteStack Modifier and Type Method Description ImmutableByteStackImmutableStack. 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 ImmutableByteStack Modifier and Type Method Description ImmutableByteStackImmutableByteStack. pop()ImmutableByteStackImmutableByteStack. pop(int count)ImmutableByteStackImmutableByteStack. push(byte item)ImmutableByteStackImmutableByteStack. reject(BytePredicate predicate)default ImmutableByteStackImmutableByteStack. rejectWithIndex(ByteIntPredicate predicate)Returns a new ImmutableByteStack excluding all elements with corresponding indexes matching the specified predicate.ImmutableByteStackImmutableByteStack. 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)ImmutableByteStackByteStack. toImmutable()
-