Uses of Interface
org.eclipse.collections.api.set.primitive.MutableCharSet
-
Packages that use MutableCharSet Package Description org.eclipse.collections.api This package contains interfaces for Eclipse Collections API.org.eclipse.collections.api.bag.primitive This package contains API for Primitive Bags with Mutable and Immutable variants.org.eclipse.collections.api.factory.set.primitive This package contains factory API for creating primitive set instances.org.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.org.eclipse.collections.api.set This package contains interfaces for set API which enhance the performance and functionality ofSet.org.eclipse.collections.api.set.primitive This package contains API for mutable and immutable primitive sets. -
-
Uses of MutableCharSet in org.eclipse.collections.api
Methods in org.eclipse.collections.api that return MutableCharSet Modifier and Type Method Description MutableCharSetCharIterable. toSet()Converts the CharIterable to a new MutableCharSet. -
Uses of MutableCharSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSetMutableCharBag. selectUnique()Returns all elements of the bag that have exactly one occurrence. -
Uses of MutableCharSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSetMutableCharSetFactory. empty()MutableCharSetMutableCharSetFactory. of()Same asMutableCharSetFactory.empty().MutableCharSetMutableCharSetFactory. of(char... items)Same asMutableCharSetFactory.with(char[]).MutableCharSetMutableCharSetFactory. ofAll(Iterable<Character> iterable)MutableCharSetMutableCharSetFactory. ofAll(CharIterable items)MutableCharSetMutableCharSetFactory. with()Same asMutableCharSetFactory.empty().MutableCharSetMutableCharSetFactory. with(char... items)MutableCharSetMutableCharSetFactory. withAll(Iterable<Character> iterable)MutableCharSetMutableCharSetFactory. withAll(CharIterable items)default MutableCharSetMutableCharSetFactory. withInitialCapacity(int capacity)Same asMutableCharSetFactory.empty(). -
Uses of MutableCharSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSetCharBooleanMap. keySet()Returns a set containing all the keys in this map.MutableCharSetCharByteMap. keySet()Returns a set containing all the keys in this map.MutableCharSetCharCharMap. keySet()Returns a set containing all the keys in this map.MutableCharSetCharDoubleMap. keySet()Returns a set containing all the keys in this map.MutableCharSetCharFloatMap. keySet()Returns a set containing all the keys in this map.MutableCharSetCharIntMap. keySet()Returns a set containing all the keys in this map.MutableCharSetCharLongMap. keySet()Returns a set containing all the keys in this map.MutableCharSetCharObjectMap. keySet()Returns a set containing all the keys in this map.MutableCharSetCharShortMap. keySet()Returns a set containing all the keys in this map. -
Uses of MutableCharSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return MutableCharSet Modifier and Type Method Description default MutableCharSetMutableSet. collectChar(CharFunction<? super T> charFunction) -
Uses of MutableCharSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return MutableCharSet Modifier and Type Method Description MutableCharSetMutableCharSet. asSynchronized()MutableCharSetMutableCharSet. asUnmodifiable()default MutableCharSetMutableCharSet. difference(CharSet set)Returns the set of all members ofthisthat are not members ofset.default MutableCharSetMutableCharSet. intersect(CharSet set)Returns the set of all objects that are members of boththisandset.default MutableCharSetMutableCharSet. newEmpty()Creates a new empty mutable version of the same Set type.MutableCharSetMutableCharSet. reject(CharPredicate predicate)MutableCharSetMutableCharSet. select(CharPredicate predicate)default MutableCharSetMutableCharSet. symmetricDifference(CharSet set)Returns the set of all objects that are a member of exactly one ofthisandset(elements which are in one of the sets, but not in both).default MutableCharSetMutableCharSet. tap(CharProcedure procedure)default MutableCharSetMutableCharSet. union(CharSet set)MutableCharSetMutableCharSet. with(char element)MutableCharSetMutableCharSet. withAll(CharIterable elements)MutableCharSetMutableCharSet. without(char element)MutableCharSetMutableCharSet. withoutAll(CharIterable elements)
-