Uses of Interface
org.eclipse.collections.api.stack.primitive.ImmutableLongStack
Packages that use ImmutableLongStack
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 ImmutableLongStack in org.eclipse.collections.api.factory.stack.primitive
Methods in org.eclipse.collections.api.factory.stack.primitive that return ImmutableLongStackModifier and TypeMethodDescriptionImmutableLongStackFactory.empty()ImmutableLongStackFactory.of()Same asImmutableLongStackFactory.empty().ImmutableLongStackFactory.of(long one) Same asImmutableLongStackFactory.with(long).ImmutableLongStackFactory.of(long... items) ImmutableLongStackFactory.ofAll(LongStream items) ImmutableLongStackFactory.ofAll(LongIterable items) ImmutableLongStackFactory.ofAllReversed(LongIterable items) ImmutableLongStackFactory.with()Same asImmutableLongStackFactory.empty().ImmutableLongStackFactory.with(long one) ImmutableLongStackFactory.with(long... items) ImmutableLongStackFactory.withAll(LongStream items) ImmutableLongStackFactory.withAll(LongIterable items) ImmutableLongStackFactory.withAllReversed(LongIterable items) -
Uses of ImmutableLongStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return ImmutableLongStackModifier and TypeMethodDescriptionImmutableStack.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 ImmutableLongStackModifier and TypeMethodDescriptionImmutableLongStack.pop()ImmutableLongStack.pop(int count) ImmutableLongStack.push(long item) ImmutableLongStack.reject(LongPredicate predicate) default ImmutableLongStackImmutableLongStack.rejectWithIndex(LongIntPredicate predicate) Returns a new ImmutableLongStack excluding all elements with corresponding indexes matching the specified predicate.ImmutableLongStack.select(LongPredicate predicate) default ImmutableLongStackImmutableLongStack.selectWithIndex(LongIntPredicate predicate) Returns a new ImmutableLongStack including all elements with corresponding indexes matching the specified predicate.default ImmutableLongStackImmutableLongStack.tap(LongProcedure procedure) LongStack.toImmutable()