Uses of Interface
org.eclipse.collections.api.partition.PartitionMutableCollection
-
Packages that use PartitionMutableCollection Package Description org.eclipse.collections.api.collection org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMaporg.eclipse.collections.api.partition.bag This package contains interfaces forPartitionBag.org.eclipse.collections.api.partition.bag.sorted This package contains interfaces forPartitionSortedBag.org.eclipse.collections.api.partition.list This package contains interfaces forPartitionList.org.eclipse.collections.api.partition.set This package contains interfaces forPartitionSet.org.eclipse.collections.api.partition.set.sorted This package contains interfaces forPartitionSortedSet. -
-
Uses of PartitionMutableCollection in org.eclipse.collections.api.collection
Methods in org.eclipse.collections.api.collection that return PartitionMutableCollection Modifier and Type Method Description PartitionMutableCollection<T>MutableCollection. partition(Predicate<? super T> predicate)Filters a collection into a PartitionedIterable based on the evaluation of the predicate.<P> PartitionMutableCollection<T>MutableCollection. partitionWith(Predicate2<? super T,? super P> predicate, P parameter)Filters a collection into a PartitionIterable based on the evaluation of the predicate. -
Uses of PartitionMutableCollection in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return PartitionMutableCollection Modifier and Type Method Description PartitionMutableCollection<V>MutableMapIterable. partition(Predicate<? super V> predicate) -
Uses of PartitionMutableCollection in org.eclipse.collections.api.partition.bag
Subinterfaces of PartitionMutableCollection in org.eclipse.collections.api.partition.bag Modifier and Type Interface Description interfacePartitionMutableBag<T>A PartitionMutableBag is the result of splitting a mutable bag into two mutable bags based on a Predicate.interfacePartitionMutableBagIterable<T>A PartitionMutableBagIterable is the result of splitting a mutable bag into two MutableBagIterables based on a Predicate. -
Uses of PartitionMutableCollection in org.eclipse.collections.api.partition.bag.sorted
Subinterfaces of PartitionMutableCollection in org.eclipse.collections.api.partition.bag.sorted Modifier and Type Interface Description interfacePartitionMutableSortedBag<T> -
Uses of PartitionMutableCollection in org.eclipse.collections.api.partition.list
Subinterfaces of PartitionMutableCollection in org.eclipse.collections.api.partition.list Modifier and Type Interface Description interfacePartitionMutableList<T>A PartitionMutableList is the result of splitting a mutable list into two mutable lists based on a Predicate. -
Uses of PartitionMutableCollection in org.eclipse.collections.api.partition.set
Subinterfaces of PartitionMutableCollection in org.eclipse.collections.api.partition.set Modifier and Type Interface Description interfacePartitionMutableSet<T>A PartitionMutableSet is the result of splitting a mutable set into two mutable sets based on a Predicate.interfacePartitionMutableSetIterable<T>A PartitionMutableSetIterable is the result of splitting a MutableSetIterable into two MutableSetIterables based on a Predicate. -
Uses of PartitionMutableCollection in org.eclipse.collections.api.partition.set.sorted
Subinterfaces of PartitionMutableCollection in org.eclipse.collections.api.partition.set.sorted Modifier and Type Interface Description interfacePartitionMutableSortedSet<T>A PartitionMutableSortedSet is the result of splitting a mutable sorted set into two mutable sorted sets based on a Predicate.
-