Uses of Interface
org.eclipse.collections.api.set.primitive.MutableCharSet
Packages that use MutableCharSet
Package
Description
This package contains interfaces for Eclipse Collections API.
This package contains API for Primitive Bags with Mutable and Immutable variants.
This package contains factory API for creating primitive set instances.
This package contains API for primitive to primitive maps, primitive to object maps and object to primitive maps with mutable and immutable variants.
This package contains interfaces for set API which enhance the performance and functionality of
Set.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 MutableCharSetModifier and TypeMethodDescriptionCharIterable.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 MutableCharSetModifier and TypeMethodDescriptionMutableCharBag.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 MutableCharSetModifier and TypeMethodDescriptionMutableCharSetFactory.empty()MutableCharSetFactory.of()Same asMutableCharSetFactory.empty().MutableCharSetFactory.of(char... items) Same asMutableCharSetFactory.with(char[]).MutableCharSetFactory.ofAll(CharIterable items) MutableCharSetFactory.with()Same asMutableCharSetFactory.empty().MutableCharSetFactory.with(char... items) MutableCharSetFactory.withAll(CharIterable items) default MutableCharSetMutableCharSetFactory.withInitialCapacity(int capacity) Same asMutableCharSetFactory.empty(). but takes in an initial capacity -
Uses of MutableCharSet in org.eclipse.collections.api.map.primitive
Methods in org.eclipse.collections.api.map.primitive that return MutableCharSetModifier and TypeMethodDescriptionCharBooleanMap.keySet()Returns a set containing all the keys in this map.CharByteMap.keySet()Returns a set containing all the keys in this map.CharCharMap.keySet()Returns a set containing all the keys in this map.CharDoubleMap.keySet()Returns a set containing all the keys in this map.CharFloatMap.keySet()Returns a set containing all the keys in this map.CharIntMap.keySet()Returns a set containing all the keys in this map.CharLongMap.keySet()Returns a set containing all the keys in this map.CharObjectMap.keySet()Returns a set containing all the keys in this map.CharShortMap.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 MutableCharSetModifier and TypeMethodDescriptiondefault 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 MutableCharSetModifier and TypeMethodDescriptionMutableCharSet.asSynchronized()MutableCharSet.asUnmodifiable()default MutableCharSetMutableCharSet.difference(CharSet set) Returns the set of all members ofthisthat are not members ofset.default MutableCharSetReturns the set of all objects that are members of boththisandset.default MutableCharSetMutableCharSet.newEmpty()Creates a new empty mutable version of the same Set type.MutableCharSet.reject(CharPredicate predicate) MutableCharSet.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.with(char element) MutableCharSet.withAll(CharIterable elements) MutableCharSet.without(char element) MutableCharSet.withoutAll(CharIterable elements)