Uses of Interface
org.eclipse.collections.api.set.primitive.ImmutableCharSet
Packages that use ImmutableCharSet
Package
Description
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 interfaces for set API which enhance the performance and functionality of
Set.This package contains API for mutable and immutable primitive sets.
-
Uses of ImmutableCharSet in org.eclipse.collections.api.bag.primitive
Methods in org.eclipse.collections.api.bag.primitive that return ImmutableCharSetModifier and TypeMethodDescriptionImmutableCharBag.selectUnique()Returns all elements of the bag that have exactly one occurrence. -
Uses of ImmutableCharSet in org.eclipse.collections.api.factory.set.primitive
Methods in org.eclipse.collections.api.factory.set.primitive that return ImmutableCharSetModifier and TypeMethodDescriptionImmutableCharSetFactory.empty()ImmutableCharSetFactory.of()Same asImmutableCharSetFactory.empty().ImmutableCharSetFactory.of(char one) Same asImmutableCharSetFactory.with(char).ImmutableCharSetFactory.of(char... items) Same asImmutableCharSetFactory.with(char[]).ImmutableCharSetFactory.ofAll(CharIterable items) ImmutableCharSetFactory.with()Same asImmutableCharSetFactory.empty().ImmutableCharSetFactory.with(char one) ImmutableCharSetFactory.with(char... items) ImmutableCharSetFactory.withAll(CharIterable items) -
Uses of ImmutableCharSet in org.eclipse.collections.api.set
Methods in org.eclipse.collections.api.set that return ImmutableCharSet -
Uses of ImmutableCharSet in org.eclipse.collections.api.set.primitive
Methods in org.eclipse.collections.api.set.primitive that return ImmutableCharSetModifier and TypeMethodDescriptiondefault ImmutableCharSetImmutableCharSet.difference(CharSet set) Returns the set of all members ofthisthat are not members ofset.default ImmutableCharSetReturns the set of all objects that are members of boththisandset.ImmutableCharSet.newWith(char element) ImmutableCharSet.newWithAll(CharIterable elements) ImmutableCharSet.newWithout(char element) ImmutableCharSet.newWithoutAll(CharIterable elements) ImmutableCharSet.reject(CharPredicate predicate) ImmutableCharSet.select(CharPredicate predicate) default ImmutableCharSetImmutableCharSet.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 ImmutableCharSetImmutableCharSet.tap(CharProcedure procedure) CharSet.toImmutable()Returns an immutable copy of this set.MutableCharSet.toImmutable()Returns an immutable copy of this set.default ImmutableCharSet