Uses of Interface
org.eclipse.collections.api.bag.primitive.MutableCharBag
-
Packages that use MutableCharBag 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 MutableCharBag in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableCharBag Modifier and Type Method Description MutableCharBagCharIterable. toBag()Converts the CharIterable to a new MutableCharBag. -
Uses of MutableCharBag in org.eclipse.collections.api.bag
Methods in org.eclipse.collections.api.bag that return MutableCharBag Modifier and Type Method Description default MutableCharBagMutableBag. collectChar(CharFunction<? super T> charFunction) -
Uses of MutableCharBag in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBagMutableCharBag. asSynchronized()MutableCharBagMutableCharBag. asUnmodifiable()default MutableCharBagMutableCharBag. newEmpty()Creates a new empty mutable version of the same Bag type.MutableCharBagMutableCharBag. reject(CharPredicate predicate)MutableCharBagMutableCharBag. select(CharPredicate predicate)MutableCharBagMutableCharBag. selectByOccurrences(IntPredicate predicate)Returns all elements of the bag that have a number of occurrences that satisfy the predicate.default MutableCharBagMutableCharBag. selectDuplicates()Returns all elements of the bag that have more than one occurrence.default MutableCharBagMutableCharBag. tap(CharProcedure procedure)MutableCharBagMutableCharBag. with(char element)MutableCharBagMutableCharBag. withAll(CharIterable elements)MutableCharBagMutableCharBag. without(char element)MutableCharBagMutableCharBag. withoutAll(CharIterable elements) -
Uses of MutableCharBag in org.eclipse.collections.api.factory.bag.primitive
Methods in org.eclipse.collections.api.factory.bag.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBagMutableCharBagFactory. empty()MutableCharBagMutableCharBagFactory. of()Same asMutableCharBagFactory.empty().MutableCharBagMutableCharBagFactory. of(char... items)Same asMutableCharBagFactory.with(char[]).MutableCharBagMutableCharBagFactory. ofAll(Iterable<Character> iterable)MutableCharBagMutableCharBagFactory. ofAll(CharIterable items)MutableCharBagMutableCharBagFactory. with()Same asMutableCharBagFactory.empty().MutableCharBagMutableCharBagFactory. with(char... items)MutableCharBagMutableCharBagFactory. withAll(Iterable<Character> iterable)MutableCharBagMutableCharBagFactory. withAll(CharIterable items) -
Uses of MutableCharBag in org.eclipse.collections.api.map
Methods in org.eclipse.collections.api.map that return MutableCharBag Modifier and Type Method Description MutableCharBagMutableMap. collectChar(CharFunction<? super V> charFunction) -
Uses of MutableCharBag in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharBag Modifier and Type Method Description MutableCharBagMutablePrimitiveObjectMap. collectChar(CharFunction<? super V> charFunction)MutableCharBagMutableCharValuesMap. reject(CharPredicate predicate)MutableCharBagMutableCharValuesMap. select(CharPredicate predicate)
-