- CharArraySet - Class in it.unimi.dsi.fastutil.chars
-
A simple, brute-force implementation of a set based on a backing array.
- CharArraySet(char[]) - Constructor for class it.unimi.dsi.fastutil.chars.CharArraySet
-
Creates a new array set using the given backing array.
- CharArraySet() - Constructor for class it.unimi.dsi.fastutil.chars.CharArraySet
-
Creates a new empty array set.
- CharArraySet(int) - Constructor for class it.unimi.dsi.fastutil.chars.CharArraySet
-
Creates a new empty array set of given initial capacity.
- CharArraySet(CharCollection) - Constructor for class it.unimi.dsi.fastutil.chars.CharArraySet
-
Creates a new array set copying the contents of a given collection.
- CharArraySet(Collection<? extends Character>) - Constructor for class it.unimi.dsi.fastutil.chars.CharArraySet
-
Creates a new array set copying the contents of a given set.
- CharArraySet(CharSet) - Constructor for class it.unimi.dsi.fastutil.chars.CharArraySet
-
Creates a new array set copying the contents of a given collection.
- CharArraySet(Set<? extends Character>) - Constructor for class it.unimi.dsi.fastutil.chars.CharArraySet
-
Creates a new array set copying the contents of a given set.
- CharArraySet(char[], int) - Constructor for class it.unimi.dsi.fastutil.chars.CharArraySet
-
Creates a new array set using the given backing array and the given number of elements of the array.
- CharAVLTreeSet - Class in it.unimi.dsi.fastutil.chars
-
A type-specific AVL tree set with a fast, small-footprint implementation.
- CharAVLTreeSet() - Constructor for class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
Creates a new empty tree set.
- CharAVLTreeSet(Comparator<? super Character>) - Constructor for class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
Creates a new empty tree set with the given comparator.
- CharAVLTreeSet(Collection<? extends Character>) - Constructor for class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
Creates a new tree set copying a given set.
- CharAVLTreeSet(SortedSet<Character>) - Constructor for class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
Creates a new tree set copying a given sorted set (and its Comparator).
- CharAVLTreeSet(CharCollection) - Constructor for class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
Creates a new tree set copying a given type-specific collection.
- CharAVLTreeSet(CharSortedSet) - Constructor for class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
Creates a new tree set copying a given type-specific sorted set (and its Comparator).
- CharAVLTreeSet(CharIterator) - Constructor for class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
Creates a new tree set using elements provided by a type-specific iterator.
- CharAVLTreeSet(Iterator<?>) - Constructor for class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
Creates a new tree set using elements provided by an iterator.
- CharAVLTreeSet(char[], int, int, Comparator<? super Character>) - Constructor for class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
Creates a new tree set and fills it with the elements of a given array using a given Comparator.
- CharAVLTreeSet(char[], int, int) - Constructor for class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
Creates a new tree set and fills it with the elements of a given array.
- CharAVLTreeSet(char[]) - Constructor for class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
Creates a new tree set copying the elements of an array.
- CharAVLTreeSet(char[], Comparator<? super Character>) - Constructor for class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
Creates a new tree set copying the elements of an array using a given Comparator.
- CharLinkedOpenCustomHashSet - Class in it.unimi.dsi.fastutil.chars
-
A type-specific linked hash set with with a fast, small-footprint implementation.
- CharLinkedOpenCustomHashSet(int, float, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Creates a new hash set.
- CharLinkedOpenCustomHashSet(int, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor.
- CharLinkedOpenCustomHashSet(CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Creates a new hash set with initial expected Hash.DEFAULT_INITIAL_SIZE elements
and Hash.DEFAULT_LOAD_FACTOR as load factor.
- CharLinkedOpenCustomHashSet(Collection<? extends Character>, float, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Creates a new hash set copying a given collection.
- CharLinkedOpenCustomHashSet(Collection<? extends Character>, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given collection.
- CharLinkedOpenCustomHashSet(CharCollection, float, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Creates a new hash set copying a given type-specific collection.
- CharLinkedOpenCustomHashSet(CharCollection, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given type-specific collection.
- CharLinkedOpenCustomHashSet(CharIterator, float, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Creates a new hash set using elements provided by a type-specific iterator.
- CharLinkedOpenCustomHashSet(CharIterator, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
- CharLinkedOpenCustomHashSet(Iterator<?>, float, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Creates a new hash set using elements provided by an iterator.
- CharLinkedOpenCustomHashSet(Iterator<?>, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator.
- CharLinkedOpenCustomHashSet(char[], int, int, float, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Creates a new hash set and fills it with the elements of a given array.
- CharLinkedOpenCustomHashSet(char[], int, int, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor and fills it with the elements of a given array.
- CharLinkedOpenCustomHashSet(char[], float, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Creates a new hash set copying the elements of an array.
- CharLinkedOpenCustomHashSet(char[], CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor
copying the elements of an array.
- CharLinkedOpenHashSet - Class in it.unimi.dsi.fastutil.chars
-
A type-specific linked hash set with with a fast, small-footprint implementation.
- CharLinkedOpenHashSet(int, float) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Creates a new hash set.
- CharLinkedOpenHashSet(int) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor.
- CharLinkedOpenHashSet() - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Creates a new hash set with initial expected Hash.DEFAULT_INITIAL_SIZE elements
and Hash.DEFAULT_LOAD_FACTOR as load factor.
- CharLinkedOpenHashSet(Collection<? extends Character>, float) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Creates a new hash set copying a given collection.
- CharLinkedOpenHashSet(Collection<? extends Character>) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given collection.
- CharLinkedOpenHashSet(CharCollection, float) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Creates a new hash set copying a given type-specific collection.
- CharLinkedOpenHashSet(CharCollection) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given type-specific collection.
- CharLinkedOpenHashSet(CharIterator, float) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Creates a new hash set using elements provided by a type-specific iterator.
- CharLinkedOpenHashSet(CharIterator) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
- CharLinkedOpenHashSet(Iterator<?>, float) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Creates a new hash set using elements provided by an iterator.
- CharLinkedOpenHashSet(Iterator<?>) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator.
- CharLinkedOpenHashSet(char[], int, int, float) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Creates a new hash set and fills it with the elements of a given array.
- CharLinkedOpenHashSet(char[], int, int) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor and fills it with the elements of a given array.
- CharLinkedOpenHashSet(char[], float) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Creates a new hash set copying the elements of an array.
- CharLinkedOpenHashSet(char[]) - Constructor for class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor
copying the elements of an array.
- CharOpenCustomHashSet - Class in it.unimi.dsi.fastutil.chars
-
A type-specific hash set with a fast, small-footprint implementation whose hashing strategy
is specified at creation time.
- CharOpenCustomHashSet(int, float, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Creates a new hash set.
- CharOpenCustomHashSet(int, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor.
- CharOpenCustomHashSet(CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Creates a new hash set with initial expected Hash.DEFAULT_INITIAL_SIZE elements
and Hash.DEFAULT_LOAD_FACTOR as load factor.
- CharOpenCustomHashSet(Collection<? extends Character>, float, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Creates a new hash set copying a given collection.
- CharOpenCustomHashSet(Collection<? extends Character>, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given collection.
- CharOpenCustomHashSet(CharCollection, float, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Creates a new hash set copying a given type-specific collection.
- CharOpenCustomHashSet(CharCollection, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given type-specific collection.
- CharOpenCustomHashSet(CharIterator, float, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Creates a new hash set using elements provided by a type-specific iterator.
- CharOpenCustomHashSet(CharIterator, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
- CharOpenCustomHashSet(Iterator<?>, float, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Creates a new hash set using elements provided by an iterator.
- CharOpenCustomHashSet(Iterator<?>, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator.
- CharOpenCustomHashSet(char[], int, int, float, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Creates a new hash set and fills it with the elements of a given array.
- CharOpenCustomHashSet(char[], int, int, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor and fills it with the elements of a given array.
- CharOpenCustomHashSet(char[], float, CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Creates a new hash set copying the elements of an array.
- CharOpenCustomHashSet(char[], CharHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor
copying the elements of an array.
- CharOpenHashSet - Class in it.unimi.dsi.fastutil.chars
-
A type-specific hash set with with a fast, small-footprint implementation.
- CharOpenHashSet(int, float) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Creates a new hash set.
- CharOpenHashSet(int) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor.
- CharOpenHashSet() - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Creates a new hash set with initial expected Hash.DEFAULT_INITIAL_SIZE elements
and Hash.DEFAULT_LOAD_FACTOR as load factor.
- CharOpenHashSet(Collection<? extends Character>, float) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Creates a new hash set copying a given collection.
- CharOpenHashSet(Collection<? extends Character>) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given collection.
- CharOpenHashSet(CharCollection, float) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Creates a new hash set copying a given type-specific collection.
- CharOpenHashSet(CharCollection) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor
copying a given type-specific collection.
- CharOpenHashSet(CharIterator, float) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Creates a new hash set using elements provided by a type-specific iterator.
- CharOpenHashSet(CharIterator) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
- CharOpenHashSet(Iterator<?>, float) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Creates a new hash set using elements provided by an iterator.
- CharOpenHashSet(Iterator<?>) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator.
- CharOpenHashSet(char[], int, int, float) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Creates a new hash set and fills it with the elements of a given array.
- CharOpenHashSet(char[], int, int) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor and fills it with the elements of a given array.
- CharOpenHashSet(char[], float) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Creates a new hash set copying the elements of an array.
- CharOpenHashSet(char[]) - Constructor for class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor
copying the elements of an array.
- CharRBTreeSet - Class in it.unimi.dsi.fastutil.chars
-
A type-specific red-black tree set with a fast, small-footprint implementation.
- CharRBTreeSet() - Constructor for class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
Creates a new empty tree set.
- CharRBTreeSet(Comparator<? super Character>) - Constructor for class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
Creates a new empty tree set with the given comparator.
- CharRBTreeSet(Collection<? extends Character>) - Constructor for class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
Creates a new tree set copying a given collection.
- CharRBTreeSet(SortedSet<Character>) - Constructor for class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
Creates a new tree set copying a given sorted set (and its Comparator).
- CharRBTreeSet(CharCollection) - Constructor for class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
Creates a new tree set copying a given type-specific collection.
- CharRBTreeSet(CharSortedSet) - Constructor for class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
Creates a new tree set copying a given type-specific sorted set (and its Comparator).
- CharRBTreeSet(CharIterator) - Constructor for class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
Creates a new tree set using elements provided by a type-specific iterator.
- CharRBTreeSet(Iterator<?>) - Constructor for class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
Creates a new tree set using elements provided by an iterator.
- CharRBTreeSet(char[], int, int, Comparator<? super Character>) - Constructor for class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
Creates a new tree set and fills it with the elements of a given array using a given Comparator.
- CharRBTreeSet(char[], int, int) - Constructor for class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
Creates a new tree set and fills it with the elements of a given array.
- CharRBTreeSet(char[]) - Constructor for class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
Creates a new tree set copying the elements of an array.
- CharRBTreeSet(char[], Comparator<? super Character>) - Constructor for class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
Creates a new tree set copying the elements of an array using a given Comparator.
- CharSet - Interface in it.unimi.dsi.fastutil.chars
-
A type-specific Set; provides some additional methods that use polymorphism to avoid (un)boxing.
- CharSets - Class in it.unimi.dsi.fastutil.chars
-
A class providing static methods and objects that do useful things with type-specific sets.
- CharSets.EmptySet - Class in it.unimi.dsi.fastutil.chars
-
An immutable class representing the empty set and implementing a type-specific set interface.
- CharSets.Singleton - Class in it.unimi.dsi.fastutil.chars
-
An immutable class representing a type-specific singleton set.
- CharSets.SynchronizedSet - Class in it.unimi.dsi.fastutil.chars
-
A synchronized wrapper class for sets.
- CharSets.UnmodifiableSet - Class in it.unimi.dsi.fastutil.chars
-
An unmodifiable wrapper class for sets.
- CharSortedSet - Interface in it.unimi.dsi.fastutil.chars
-
A type-specific SortedSet; provides some additional methods that use polymorphism to avoid (un)boxing.
- CharSortedSets - Class in it.unimi.dsi.fastutil.chars
-
A class providing static methods and objects that do useful things with type-specific sorted sets.
- CharSortedSets.EmptySet - Class in it.unimi.dsi.fastutil.chars
-
An immutable class representing the empty sorted set and implementing a type-specific set interface.
- CharSortedSets.Singleton - Class in it.unimi.dsi.fastutil.chars
-
A class representing a singleton sorted set.
- CharSortedSets.SynchronizedSortedSet - Class in it.unimi.dsi.fastutil.chars
-
A synchronized wrapper class for sorted sets.
- CharSortedSets.UnmodifiableSortedSet - Class in it.unimi.dsi.fastutil.chars
-
An unmodifiable wrapper class for sorted sets.
- clear() - Method in class it.unimi.dsi.fastutil.chars.CharArraySet
-
- clear() - Method in class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
- clear() - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
- clear() - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
- clear() - Method in class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
- clear() - Method in class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
- clear() - Method in class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
- clone() - Method in class it.unimi.dsi.fastutil.chars.CharArraySet
-
Returns a deep copy of this set.
- clone() - Method in class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
Returns a deep copy of this tree set.
- clone() - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Returns a deep copy of this set.
- clone() - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Returns a deep copy of this set.
- clone() - Method in class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Returns a deep copy of this set.
- clone() - Method in class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Returns a deep copy of this set.
- clone() - Method in class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
Returns a deep copy of this tree set.
- clone() - Method in class it.unimi.dsi.fastutil.chars.CharSets.EmptySet
-
- clone() - Method in class it.unimi.dsi.fastutil.chars.CharSets.Singleton
-
- clone() - Method in class it.unimi.dsi.fastutil.chars.CharSortedSets.EmptySet
-
- comparator() - Method in class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
- comparator() - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
- comparator() - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
- comparator() - Method in class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
- comparator() - Method in interface it.unimi.dsi.fastutil.chars.CharSortedSet
- comparator() - Method in class it.unimi.dsi.fastutil.chars.CharSortedSets.EmptySet
-
- comparator() - Method in class it.unimi.dsi.fastutil.chars.CharSortedSets.Singleton
-
- comparator() - Method in class it.unimi.dsi.fastutil.chars.CharSortedSets.SynchronizedSortedSet
-
- comparator() - Method in class it.unimi.dsi.fastutil.chars.CharSortedSets.UnmodifiableSortedSet
-
- contains(char) - Method in class it.unimi.dsi.fastutil.chars.CharArraySet
-
- contains(char) - Method in class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
- contains(char) - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
- contains(char) - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
- contains(char) - Method in class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
- contains(char) - Method in class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
- contains(char) - Method in class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
- contains(Object) - Method in interface it.unimi.dsi.fastutil.chars.CharSet
-
- contains(char) - Method in class it.unimi.dsi.fastutil.chars.CharSets.Singleton
-
- containsNull - Variable in class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Whether this set contains the null key.
- containsNull - Variable in class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Whether this set contains the null key.
- containsNull - Variable in class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Whether this set contains the null key.
- containsNull - Variable in class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Whether this set contains the null key.
- count - Variable in class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
Number of elements in this set.
- count - Variable in class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
Number of elements in this set.
- shiftKeys(int) - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Shifts left entries with the specified hash code, starting at the specified position,
and empties the resulting free entry.
- shiftKeys(int) - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Shifts left entries with the specified hash code, starting at the specified position,
and empties the resulting free entry.
- shiftKeys(int) - Method in class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Shifts left entries with the specified hash code, starting at the specified position,
and empties the resulting free entry.
- shiftKeys(int) - Method in class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Shifts left entries with the specified hash code, starting at the specified position,
and empties the resulting free entry.
- singleton(char) - Static method in class it.unimi.dsi.fastutil.chars.CharSets
-
Returns a type-specific immutable set containing only the specified element.
- singleton(Character) - Static method in class it.unimi.dsi.fastutil.chars.CharSets
-
Returns a type-specific immutable set containing only the specified element.
- Singleton(char) - Constructor for class it.unimi.dsi.fastutil.chars.CharSets.Singleton
-
- singleton(char) - Static method in class it.unimi.dsi.fastutil.chars.CharSortedSets
-
Returns a type-specific immutable sorted set containing only the specified element.
- singleton(char, CharComparator) - Static method in class it.unimi.dsi.fastutil.chars.CharSortedSets
-
Returns a type-specific immutable sorted set containing only the specified element, and using a specified comparator.
- singleton(Object) - Static method in class it.unimi.dsi.fastutil.chars.CharSortedSets
-
Returns a type-specific immutable sorted set containing only the specified element.
- singleton(Object, CharComparator) - Static method in class it.unimi.dsi.fastutil.chars.CharSortedSets
-
Returns a type-specific immutable sorted set containing only the specified element, and using a specified comparator.
- Singleton(char, CharComparator) - Constructor for class it.unimi.dsi.fastutil.chars.CharSortedSets.Singleton
-
- size - Variable in class it.unimi.dsi.fastutil.chars.CharArraySet
-
- size() - Method in class it.unimi.dsi.fastutil.chars.CharArraySet
-
- size() - Method in class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
- size - Variable in class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Number of entries in the set (including the null key, if present).
- size() - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
- size - Variable in class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Number of entries in the set (including the null key, if present).
- size() - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
- size - Variable in class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Number of entries in the set (including the null key, if present).
- size() - Method in class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
- size - Variable in class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
Number of entries in the set (including the null key, if present).
- size() - Method in class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
- size() - Method in class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
- size() - Method in class it.unimi.dsi.fastutil.chars.CharSets.Singleton
-
- sortedSet - Variable in class it.unimi.dsi.fastutil.chars.CharSortedSets.SynchronizedSortedSet
-
- sortedSet - Variable in class it.unimi.dsi.fastutil.chars.CharSortedSets.UnmodifiableSortedSet
-
- spliterator() - Method in class it.unimi.dsi.fastutil.chars.CharArraySet
-
Returns a type-specific spliterator on the elements of this set.
- spliterator() - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Returns a type-specific spliterator on the elements of this sorted-set.
- spliterator() - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Returns a type-specific spliterator on the elements of this sorted-set.
- spliterator() - Method in class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
- spliterator() - Method in class it.unimi.dsi.fastutil.chars.CharOpenHashSet
-
- spliterator() - Method in interface it.unimi.dsi.fastutil.chars.CharSet
-
Returns a type-specific spliterator on the elements of this set.
- spliterator() - Method in class it.unimi.dsi.fastutil.chars.CharSets.Singleton
-
- spliterator() - Method in interface it.unimi.dsi.fastutil.chars.CharSortedSet
-
Returns a type-specific spliterator on the elements of this sorted-set.
- spliterator() - Method in class it.unimi.dsi.fastutil.chars.CharSortedSets.Singleton
-
- storedComparator - Variable in class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
This set's comparator, as provided in the constructor.
- storedComparator - Variable in class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
This set's comparator, as provided in the constructor.
- strategy - Variable in class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
The hash strategy of this custom set.
- strategy() - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Returns the hashing strategy.
- strategy - Variable in class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
The hash strategy of this custom set.
- strategy() - Method in class it.unimi.dsi.fastutil.chars.CharOpenCustomHashSet
-
Returns the hashing strategy.
- subSet(char, char) - Method in class it.unimi.dsi.fastutil.chars.CharAVLTreeSet
-
- subSet(char, char) - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenCustomHashSet
-
Returns a view of the portion of this sorted set whose elements range from fromElement, inclusive, to toElement, exclusive.
- subSet(char, char) - Method in class it.unimi.dsi.fastutil.chars.CharLinkedOpenHashSet
-
Returns a view of the portion of this sorted set whose elements range from fromElement, inclusive, to toElement, exclusive.
- subSet(char, char) - Method in class it.unimi.dsi.fastutil.chars.CharRBTreeSet
-
- subSet(char, char) - Method in interface it.unimi.dsi.fastutil.chars.CharSortedSet
-
Returns a view of the portion of this sorted set whose elements range from fromElement, inclusive, to toElement, exclusive.
- subSet(Character, Character) - Method in interface it.unimi.dsi.fastutil.chars.CharSortedSet
-
- subSet(char, char) - Method in class it.unimi.dsi.fastutil.chars.CharSortedSets.EmptySet
-
- subSet(Character, Character) - Method in class it.unimi.dsi.fastutil.chars.CharSortedSets.EmptySet
-
- subSet(char, char) - Method in class it.unimi.dsi.fastutil.chars.CharSortedSets.Singleton
-
- subSet(Character, Character) - Method in class it.unimi.dsi.fastutil.chars.CharSortedSets.Singleton
-
- subSet(char, char) - Method in class it.unimi.dsi.fastutil.chars.CharSortedSets.SynchronizedSortedSet
-
- subSet(Character, Character) - Method in class it.unimi.dsi.fastutil.chars.CharSortedSets.SynchronizedSortedSet
-
- subSet(char, char) - Method in class it.unimi.dsi.fastutil.chars.CharSortedSets.UnmodifiableSortedSet
-
- subSet(Character, Character) - Method in class it.unimi.dsi.fastutil.chars.CharSortedSets.UnmodifiableSortedSet
-
- synchronize(CharSet) - Static method in class it.unimi.dsi.fastutil.chars.CharSets
-
Returns a synchronized type-specific set backed by the given type-specific set.
- synchronize(CharSet, Object) - Static method in class it.unimi.dsi.fastutil.chars.CharSets
-
Returns a synchronized type-specific set backed by the given type-specific set, using an assigned object to synchronize.
- synchronize(CharSortedSet) - Static method in class it.unimi.dsi.fastutil.chars.CharSortedSets
-
Returns a synchronized type-specific sorted set backed by the given type-specific sorted set.
- synchronize(CharSortedSet, Object) - Static method in class it.unimi.dsi.fastutil.chars.CharSortedSets
-
Returns a synchronized type-specific sorted set backed by the given type-specific sorted set, using an assigned object to synchronize.
- SynchronizedSet(CharSet, Object) - Constructor for class it.unimi.dsi.fastutil.chars.CharSets.SynchronizedSet
-
- SynchronizedSet(CharSet) - Constructor for class it.unimi.dsi.fastutil.chars.CharSets.SynchronizedSet
-
- SynchronizedSortedSet(CharSortedSet, Object) - Constructor for class it.unimi.dsi.fastutil.chars.CharSortedSets.SynchronizedSortedSet
-
- SynchronizedSortedSet(CharSortedSet) - Constructor for class it.unimi.dsi.fastutil.chars.CharSortedSets.SynchronizedSortedSet
-