Uses of Interface
org.eclipse.collections.api.partition.stack.PartitionMutableStack
-
Packages that use PartitionMutableStack Package Description org.eclipse.collections.api.stack This package contains interfaces for stack API.org.eclipse.collections.impl.partition.stack This package contains implementations of thePartitionStack
interface.org.eclipse.collections.impl.stack.mutable This package contains implementations of theMutableStack
interface. -
-
Uses of PartitionMutableStack in org.eclipse.collections.api.stack
Methods in org.eclipse.collections.api.stack that return PartitionMutableStack Modifier and Type Method Description PartitionMutableStack<T>
MutableStack. partition(Predicate<? super T> predicate)
PartitionMutableStack<T>
MutableStack. partitionWhile(Predicate<? super T> predicate)
<P> PartitionMutableStack<T>
MutableStack. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)
-
Uses of PartitionMutableStack in org.eclipse.collections.impl.partition.stack
Classes in org.eclipse.collections.impl.partition.stack that implement PartitionMutableStack Modifier and Type Class Description class
PartitionArrayStack<T>
-
Uses of PartitionMutableStack in org.eclipse.collections.impl.stack.mutable
Methods in org.eclipse.collections.impl.stack.mutable that return PartitionMutableStack Modifier and Type Method Description PartitionMutableStack<T>
ArrayStack. partition(Predicate<? super T> predicate)
PartitionMutableStack<T>
SynchronizedStack. partition(Predicate<? super T> predicate)
PartitionMutableStack<T>
UnmodifiableStack. partition(Predicate<? super T> predicate)
PartitionMutableStack<T>
ArrayStack. partitionWhile(Predicate<? super T> predicate)
PartitionMutableStack<T>
SynchronizedStack. partitionWhile(Predicate<? super T> predicate)
PartitionMutableStack<T>
UnmodifiableStack. partitionWhile(Predicate<? super T> predicate)
<P> PartitionMutableStack<T>
ArrayStack. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> PartitionMutableStack<T>
SynchronizedStack. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)
<P> PartitionMutableStack<T>
UnmodifiableStack. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)
-