Uses of Interface
org.eclipse.collections.api.bag.primitive.MutableLongBag
-
Packages that use MutableLongBag 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 MutableLongBag in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableLongBag Modifier and Type Method Description MutableLongBagLongIterable. toBag()Converts the LongIterable to a new MutableLongBag. -
Uses of MutableLongBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return MutableLongBag Modifier and Type Method Description default MutableLongBagMutableBag. collectLong(LongFunction<? super T> longFunction) -
Uses of MutableLongBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableLongBag Modifier and Type Method Description MutableLongBagMutableLongBag. asSynchronized()MutableLongBagMutableLongBag. asUnmodifiable()default MutableLongBagMutableLongBag. newEmpty()Creates a new empty mutable version of the same Bag type.MutableLongBagMutableLongBag. reject(LongPredicate predicate)MutableLongBagMutableLongBag. select(LongPredicate predicate)MutableLongBagMutableLongBag. selectByOccurrences(IntPredicate predicate)Returns all elements of the bag that have a number of occurrences that satisfy the predicate.default MutableLongBagMutableLongBag. selectDuplicates()Returns all elements of the bag that have more than one occurrence.default MutableLongBagMutableLongBag. tap(LongProcedure procedure)MutableLongBagMutableLongBag. with(long element)MutableLongBagMutableLongBag. withAll(LongIterable elements)MutableLongBagMutableLongBag. without(long element)MutableLongBagMutableLongBag. withoutAll(LongIterable elements) -
Uses of MutableLongBag in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive that return MutableLongBag Modifier and Type Method Description MutableLongBagMutableLongBagFactory. empty()MutableLongBagMutableLongBagFactory. of()Same asMutableLongBagFactory.empty().MutableLongBagMutableLongBagFactory. of(long... items)Same asMutableLongBagFactory.with(long[]).MutableLongBagMutableLongBagFactory. ofAll(Iterable<Long> iterable)MutableLongBagMutableLongBagFactory. ofAll(LongStream items)MutableLongBagMutableLongBagFactory. ofAll(LongIterable items)MutableLongBagMutableLongBagFactory. with()Same asMutableLongBagFactory.empty().MutableLongBagMutableLongBagFactory. with(long... items)MutableLongBagMutableLongBagFactory. withAll(Iterable<Long> iterable)MutableLongBagMutableLongBagFactory. withAll(LongStream items)MutableLongBagMutableLongBagFactory. withAll(LongIterable items) -
Uses of MutableLongBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableLongBag Modifier and Type Method Description MutableLongBagMutableMap. collectLong(LongFunction<? super V> longFunction) -
Uses of MutableLongBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableLongBag Modifier and Type Method Description MutableLongBagMutablePrimitiveObjectMap. collectLong(LongFunction<? super V> longFunction)MutableLongBagMutableLongValuesMap. reject(LongPredicate predicate)MutableLongBagMutableLongValuesMap. select(LongPredicate predicate)
-