Uses of Interface
org.eclipse.collections.api.set.MutableSetIterable
-
Packages that use MutableSetIterable Package Description org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.multimap.set This package contains interfaces forSetMultimap.org.eclipse.collections.api.partition.set This package contains interfaces forPartitionSet.org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet.org.eclipse.collections.api.set.sorted This package contains interfaces for sorted set API. -
-
Uses of MutableSetIterable in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return MutableSetIterable Modifier and Type Method Description MutableSetIterable<T>MutableBagIterable. selectUnique()MutableSetIterable<Pair<T,Integer>>MutableBagIterable. zipWithIndex() -
Uses of MutableSetIterable in org.eclipse.collections.api.multimap.set
Methods in org.eclipse.collections.api.multimap.set that return MutableSetIterable Modifier and Type Method Description MutableSetIterable<V>MutableSetIterableMultimap. get(K key)MutableSetIterable<V>MutableSetIterableMultimap. getIfAbsentPutAll(K key, Iterable<? extends V> values)MutableSetIterable<V>MutableSetIterableMultimap. removeAll(Object key)MutableSetIterable<V>MutableSetIterableMultimap. replaceValues(K key, Iterable<? extends V> values) -
Uses of MutableSetIterable in org.eclipse.collections.api.partition.set
Methods in org.eclipse.collections.api.partition.set that return MutableSetIterable Modifier and Type Method Description MutableSetIterable<T>PartitionMutableSetIterable. getRejected()MutableSetIterable<T>PartitionMutableSetIterable. getSelected() -
Uses of MutableSetIterable in org.eclipse.collections.api.set
Subinterfaces of MutableSetIterable in org.eclipse.collections.api.set Modifier and Type Interface Description interfaceFixedSizeSet<T>A FixedSizeSet is a set that may be mutated, but cannot grow or shrink in size.interfaceMultiReaderSet<T>A MultiReaderSet provides thread-safe iteration for a set through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().interfaceMutableSet<T>A MutableSet is an extension java.util.Set which provides methods matching the Smalltalk Collection protocol.Methods in org.eclipse.collections.api.set that return MutableSetIterable Modifier and Type Method Description MutableSetIterable<T>MutableSetIterable. reject(Predicate<? super T> predicate)<P> MutableSetIterable<T>MutableSetIterable. rejectWith(Predicate2<? super T,? super P> predicate, P parameter)MutableSetIterable<T>MutableSetIterable. select(Predicate<? super T> predicate)<S> MutableSetIterable<S>MutableSetIterable. selectInstancesOf(Class<S> clazz)<P> MutableSetIterable<T>MutableSetIterable. selectWith(Predicate2<? super T,? super P> predicate, P parameter)MutableSetIterable<T>MutableSetIterable. tap(Procedure<? super T> procedure)default MutableSetIterable<T>MutableSetIterable. with(T element)default MutableSetIterable<T>MutableSetIterable. withAll(Iterable<? extends T> elements)default MutableSetIterable<T>MutableSetIterable. without(T element)default MutableSetIterable<T>MutableSetIterable. withoutAll(Iterable<? extends T> elements)MutableSetIterable<Pair<T,Integer>>MutableSetIterable. zipWithIndex()Deprecated.in 6.0. -
Uses of MutableSetIterable in org.eclipse.collections.api.set.sorted
Subinterfaces of MutableSetIterable in org.eclipse.collections.api.set.sorted Modifier and Type Interface Description interfaceMutableSortedSet<T>A MutableSortedSet is an implementation of a JCF SortedSet which provides methods matching the Smalltalk Collection protocol.
-