Uses of Interface
org.eclipse.collections.api.stack.primitive.ImmutableLongStack
-
Packages that use ImmutableLongStack 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.org.eclipse.collections.impl.stack.immutable This package contains implementations of theImmutableStack
interface.org.eclipse.collections.impl.stack.immutable.primitive This package contains implementations of the immutable primitive stack interfaces.org.eclipse.collections.impl.stack.mutable.primitive This package contains implementations of the mutable primitive stack interfaces.org.eclipse.collections.impl.stream -
-
Uses of ImmutableLongStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return ImmutableLongStack Modifier and Type Method Description ImmutableLongStack
ImmutableLongStackFactory. empty()
ImmutableLongStack
ImmutableLongStackFactory. of()
Same asImmutableLongStackFactory.empty()
.ImmutableLongStack
ImmutableLongStackFactory. of(long one)
Same asImmutableLongStackFactory.with(long)
.ImmutableLongStack
ImmutableLongStackFactory. of(long... items)
ImmutableLongStack
ImmutableLongStackFactory. ofAll(java.lang.Iterable<java.lang.Long> iterable)
ImmutableLongStack
ImmutableLongStackFactory. ofAll(java.util.stream.LongStream items)
ImmutableLongStack
ImmutableLongStackFactory. ofAll(LongIterable items)
ImmutableLongStack
ImmutableLongStackFactory. ofAllReversed(LongIterable items)
ImmutableLongStack
ImmutableLongStackFactory. with()
Same asImmutableLongStackFactory.empty()
.ImmutableLongStack
ImmutableLongStackFactory. with(long one)
ImmutableLongStack
ImmutableLongStackFactory. with(long... items)
ImmutableLongStack
ImmutableLongStackFactory. withAll(java.lang.Iterable<java.lang.Long> iterable)
ImmutableLongStack
ImmutableLongStackFactory. withAll(java.util.stream.LongStream items)
ImmutableLongStack
ImmutableLongStackFactory. withAll(LongIterable items)
ImmutableLongStack
ImmutableLongStackFactory. withAllReversed(LongIterable items)
-
Uses of ImmutableLongStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableLongStack Modifier and Type Method Description ImmutableLongStack
ImmutableStack. collectLong(LongFunction<? super T> longFunction)
-
Uses of ImmutableLongStack in org.eclipse.collections.api.stack.primitive
Methods in org.eclipse.collections.api.stack.primitive that return ImmutableLongStack Modifier and Type Method Description ImmutableLongStack
ImmutableLongStack. pop()
ImmutableLongStack
ImmutableLongStack. pop(int count)
ImmutableLongStack
ImmutableLongStack. push(long item)
ImmutableLongStack
ImmutableLongStack. reject(LongPredicate predicate)
default ImmutableLongStack
ImmutableLongStack. rejectWithIndex(LongIntPredicate predicate)
Returns a new ImmutableLongStack excluding all elements with corresponding indexes matching the specified predicate.ImmutableLongStack
ImmutableLongStack. select(LongPredicate predicate)
default ImmutableLongStack
ImmutableLongStack. selectWithIndex(LongIntPredicate predicate)
Returns a new ImmutableLongStack including all elements with corresponding indexes matching the specified predicate.default ImmutableLongStack
ImmutableLongStack. tap(LongProcedure procedure)
ImmutableLongStack
LongStack. toImmutable()
-
Uses of ImmutableLongStack in org.eclipse.collections.impl.stack.immutable
Methods in org.eclipse.collections.impl.stack.immutable that return ImmutableLongStack Modifier and Type Method Description ImmutableLongStack
ImmutableArrayStack. collectLong(LongFunction<? super T> longFunction)
Deprecated.ImmutableLongStack
ImmutableEmptyStack. collectLong(LongFunction<? super T> longFunction)
ImmutableLongStack
ImmutableNotEmptyStack. collectLong(LongFunction<? super T> function)
-
Uses of ImmutableLongStack in org.eclipse.collections.impl.stack.immutable.primitive
Classes in org.eclipse.collections.impl.stack.immutable.primitive that implement ImmutableLongStack Modifier and Type Class Description (package private) class
ImmutableLongArrayStack
ImmutableLongArrayStack is the non-modifiable equivalent ofLongArrayStack
.(package private) class
ImmutableLongEmptyStack
ImmutableLongEmptyStack is an optimization forImmutableLongStack
of size 0.(package private) class
ImmutableLongSingletonStack
ImmutableLongSingletonStack is an optimization forImmutableLongStack
of size 1.Fields in org.eclipse.collections.impl.stack.immutable.primitive declared as ImmutableLongStack Modifier and Type Field Description (package private) static ImmutableLongStack
ImmutableLongEmptyStack. INSTANCE
Methods in org.eclipse.collections.impl.stack.immutable.primitive that return ImmutableLongStack Modifier and Type Method Description ImmutableLongStack
ImmutableLongStackFactoryImpl. empty()
ImmutableLongStack
ImmutableLongStackFactoryImpl. of()
ImmutableLongStack
ImmutableLongStackFactoryImpl. of(long one)
ImmutableLongStack
ImmutableLongStackFactoryImpl. of(long... items)
ImmutableLongStack
ImmutableLongStackFactoryImpl. ofAll(java.lang.Iterable<java.lang.Long> iterable)
ImmutableLongStack
ImmutableLongStackFactoryImpl. ofAll(java.util.stream.LongStream items)
ImmutableLongStack
ImmutableLongStackFactoryImpl. ofAll(LongIterable items)
ImmutableLongStack
ImmutableLongStackFactoryImpl. ofAllReversed(LongIterable items)
ImmutableLongStack
ImmutableLongArrayStack. pop()
ImmutableLongStack
ImmutableLongArrayStack. pop(int count)
ImmutableLongStack
ImmutableLongEmptyStack. pop()
ImmutableLongStack
ImmutableLongEmptyStack. pop(int count)
ImmutableLongStack
ImmutableLongSingletonStack. pop()
ImmutableLongStack
ImmutableLongSingletonStack. pop(int count)
ImmutableLongStack
ImmutableLongArrayStack. push(long item)
ImmutableLongStack
ImmutableLongEmptyStack. push(long element)
ImmutableLongStack
ImmutableLongSingletonStack. push(long element)
ImmutableLongStack
ImmutableLongArrayStack. reject(LongPredicate predicate)
ImmutableLongStack
ImmutableLongEmptyStack. reject(LongPredicate predicate)
ImmutableLongStack
ImmutableLongSingletonStack. reject(LongPredicate predicate)
ImmutableLongStack
ImmutableLongArrayStack. select(LongPredicate predicate)
ImmutableLongStack
ImmutableLongEmptyStack. select(LongPredicate predicate)
ImmutableLongStack
ImmutableLongSingletonStack. select(LongPredicate predicate)
ImmutableLongStack
ImmutableLongArrayStack. toImmutable()
ImmutableLongStack
ImmutableLongEmptyStack. toImmutable()
ImmutableLongStack
ImmutableLongSingletonStack. toImmutable()
ImmutableLongStack
ImmutableLongStackFactoryImpl. with()
ImmutableLongStack
ImmutableLongStackFactoryImpl. with(long one)
ImmutableLongStack
ImmutableLongStackFactoryImpl. with(long... items)
ImmutableLongStack
ImmutableLongStackFactoryImpl. withAll(java.lang.Iterable<java.lang.Long> iterable)
ImmutableLongStack
ImmutableLongStackFactoryImpl. withAll(java.util.stream.LongStream items)
ImmutableLongStack
ImmutableLongStackFactoryImpl. withAll(LongIterable items)
ImmutableLongStack
ImmutableLongStackFactoryImpl. withAllReversed(LongIterable items)
-
Uses of ImmutableLongStack in org.eclipse.collections.impl.stack.mutable.primitive
Methods in org.eclipse.collections.impl.stack.mutable.primitive that return ImmutableLongStack Modifier and Type Method Description ImmutableLongStack
LongArrayStack. toImmutable()
ImmutableLongStack
SynchronizedLongStack. toImmutable()
ImmutableLongStack
UnmodifiableLongStack. toImmutable()
-
Uses of ImmutableLongStack in org.eclipse.collections.impl.stream
Methods in org.eclipse.collections.impl.stream that return ImmutableLongStack Modifier and Type Method Description static ImmutableLongStack
PrimitiveStreams. iLongStack(java.util.stream.LongStream stream)
-