Uses of Interface
org.eclipse.collections.api.bag.MutableBagIterable
Packages that use MutableBagIterable
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains interfaces for Bag API.
This package contains interfaces for SortedBag API.
This package contains interfaces for
BagMultimap.This package contains interfaces for
PartitionBag.-
Uses of MutableBagIterable in org.eclipse.collections.api
Methods in org.eclipse.collections.api with type parameters of type MutableBagIterableModifier and TypeMethodDescriptiondefault <V,R extends MutableBagIterable<V>>
RThis method will count the number of occurrences of each value calculated by applying the function to each element of the collection.default <V,R extends MutableBagIterable<V>>
RRichIterable.countByEach(Function<? super T, ? extends Iterable<V>> function, R target) This method will count the number of occurrences of each value calculated by applying the function to each element of the collection.default <V,P, R extends MutableBagIterable<V>>
RRichIterable.countByWith(Function2<? super T, ? super P, ? extends V> function, P parameter, R target) This method will count the number of occurrences of each value calculated by applying the function to each element of the collection with the specified parameter as the second argument. -
Uses of MutableBagIterable in org.eclipse.collections.api.bag
Subinterfaces of MutableBagIterable in org.eclipse.collections.api.bagModifier and TypeInterfaceDescriptioninterfaceA MultiReaderBag provides thread-safe iteration for a bag through methodswithReadLockAndDelegate()andwithWriteLockAndDelegate().interfaceMutableBag<T>A MutableBag is a Collection whose elements are unordered and may contain duplicate entries.Methods in org.eclipse.collections.api.bag that return MutableBagIterableModifier and TypeMethodDescription<P> MutableBagIterable<T>MutableBagIterable.rejectWith(Predicate2<? super T, ? super P> predicate, P parameter) MutableBagIterable.selectByOccurrences(IntPredicate predicate) default MutableBagIterable<T>MutableBagIterable.selectDuplicates()<S> MutableBagIterable<S>MutableBagIterable.selectInstancesOf(Class<S> clazz) <P> MutableBagIterable<T>MutableBagIterable.selectWith(Predicate2<? super T, ? super P> predicate, P parameter) default MutableBagIterable<T>default MutableBagIterable<T>default MutableBagIterable<T>MutableBagIterable.withOccurrences(T element, int occurrences) default MutableBagIterable<T>default MutableBagIterable<T>MutableBagIterable.withoutAll(Iterable<? extends T> elements) default MutableBagIterable<T>MutableBagIterable.withoutOccurrences(T element, int occurrences) -
Uses of MutableBagIterable in org.eclipse.collections.api.bag.sorted
Subinterfaces of MutableBagIterable in org.eclipse.collections.api.bag.sorted -
Uses of MutableBagIterable in org.eclipse.collections.api.multimap.bag
Methods in org.eclipse.collections.api.multimap.bag that return MutableBagIterableModifier and TypeMethodDescriptionMutableBagIterableMultimap.getIfAbsentPutAll(K key, Iterable<? extends V> values) MutableBagIterableMultimap.replaceValues(K key, Iterable<? extends V> values) -
Uses of MutableBagIterable in org.eclipse.collections.api.partition.bag
Methods in org.eclipse.collections.api.partition.bag that return MutableBagIterableModifier and TypeMethodDescriptionPartitionMutableBagIterable.getRejected()PartitionMutableBagIterable.getSelected()