Uses of Interface
org.eclipse.collections.api.bag.primitive.MutableIntBag
-
Packages that use MutableIntBag Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag This package contains interfaces for Bag API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.factory.bag.primitive org.eclipse.collections.api.map This package contains interfaces for map API which enhance the performance and functionality ofMaporg.eclipse.collections.api.map.primitive This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants. -
-
Uses of MutableIntBag in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableIntBag Modifier and Type Method Description MutableIntBagIntIterable. toBag()Converts the IntIterable to a new MutableIntBag. -
Uses of MutableIntBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return MutableIntBag Modifier and Type Method Description default MutableIntBagMutableBag. collectInt(IntFunction<? super T> intFunction) -
Uses of MutableIntBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBagMutableIntBag. asSynchronized()MutableIntBagMutableIntBag. asUnmodifiable()default MutableIntBagMutableIntBag. newEmpty()Creates a new empty mutable version of the same Bag type.MutableIntBagMutableIntBag. reject(IntPredicate predicate)MutableIntBagMutableIntBag. select(IntPredicate predicate)MutableIntBagMutableIntBag. selectByOccurrences(IntPredicate predicate)Returns all elements of the bag that have a number of occurrences that satisfy the predicate.default MutableIntBagMutableIntBag. selectDuplicates()Returns all elements of the bag that have more than one occurrence.default MutableIntBagMutableIntBag. tap(IntProcedure procedure)MutableIntBagMutableIntBag. with(int element)MutableIntBagMutableIntBag. withAll(IntIterable elements)MutableIntBagMutableIntBag. without(int element)MutableIntBagMutableIntBag. withoutAll(IntIterable elements) -
Uses of MutableIntBag in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBagMutableIntBagFactory. empty()MutableIntBagMutableIntBagFactory. of()Same asMutableIntBagFactory.empty().MutableIntBagMutableIntBagFactory. of(int... items)Same asMutableIntBagFactory.with(int[]).MutableIntBagMutableIntBagFactory. ofAll(Iterable<Integer> iterable)MutableIntBagMutableIntBagFactory. ofAll(IntStream items)MutableIntBagMutableIntBagFactory. ofAll(IntIterable items)MutableIntBagMutableIntBagFactory. with()Same asMutableIntBagFactory.empty().MutableIntBagMutableIntBagFactory. with(int... items)MutableIntBagMutableIntBagFactory. withAll(Iterable<Integer> iterable)MutableIntBagMutableIntBagFactory. withAll(IntStream items)MutableIntBagMutableIntBagFactory. withAll(IntIterable items) -
Uses of MutableIntBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableIntBag Modifier and Type Method Description MutableIntBagMutableMap. collectInt(IntFunction<? super V> intFunction) -
Uses of MutableIntBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableIntBag Modifier and Type Method Description MutableIntBagMutablePrimitiveObjectMap. collectInt(IntFunction<? super V> intFunction)MutableIntBagMutableIntValuesMap. reject(IntPredicate predicate)MutableIntBagMutableIntValuesMap. select(IntPredicate predicate)
-