Skip navigation links
A B C E F H I K L M N O R S T U 

A

a - Variable in class it.unimi.dsi.fastutil.bytes.ByteArraySet
The backing array (valid up to ByteArraySet.size, excluded).
AbstractByteSet - Class in it.unimi.dsi.fastutil.bytes
An abstract class providing basic methods for sets implementing a type-specific interface.
AbstractByteSet() - Constructor for class it.unimi.dsi.fastutil.bytes.AbstractByteSet
 
AbstractByteSortedSet - Class in it.unimi.dsi.fastutil.bytes
An abstract class providing basic methods for sorted sets implementing a type-specific interface.
AbstractByteSortedSet() - Constructor for class it.unimi.dsi.fastutil.bytes.AbstractByteSortedSet
 
actualComparator - Variable in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
This set's actual comparator; it may differ from ByteAVLTreeSet.storedComparator because it is always a type-specific comparator, so it could be derived from the former by wrapping.
actualComparator - Variable in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
This set's actual comparator; it may differ from ByteRBTreeSet.storedComparator because it is always a type-specific comparator, so it could be derived from the former by wrapping.
add(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteArraySet
 
add(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
 
add(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
 
add(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
 
add(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
 
add(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
 
add(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
 
add(Byte) - Method in interface it.unimi.dsi.fastutil.bytes.ByteSet
Deprecated.
Please use the corresponding type-specific method instead.
addAll(ByteCollection) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
 
addAll(Collection<? extends Byte>) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
 
addAll(ByteCollection) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
 
addAll(Collection<? extends Byte>) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
 
addAll(ByteCollection) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
 
addAll(Collection<? extends Byte>) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
 
addAll(ByteCollection) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
 
addAll(Collection<? extends Byte>) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
 
addAll(Collection<? extends Byte>) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
addAll(ByteCollection) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
addAndMoveToFirst(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Adds a key to the set; if the key is already present, it is moved to the first position of the iteration order.
addAndMoveToFirst(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Adds a key to the set; if the key is already present, it is moved to the first position of the iteration order.
addAndMoveToLast(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Adds a key to the set; if the key is already present, it is moved to the last position of the iteration order.
addAndMoveToLast(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Adds a key to the set; if the key is already present, it is moved to the last position of the iteration order.

B

ByteArraySet - Class in it.unimi.dsi.fastutil.bytes
A simple, brute-force implementation of a set based on a backing array.
ByteArraySet(byte[]) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteArraySet
Creates a new array set using the given backing array.
ByteArraySet() - Constructor for class it.unimi.dsi.fastutil.bytes.ByteArraySet
Creates a new empty array set.
ByteArraySet(int) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteArraySet
Creates a new empty array set of given initial capacity.
ByteArraySet(ByteCollection) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteArraySet
Creates a new array set copying the contents of a given collection.
ByteArraySet(Collection<? extends Byte>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteArraySet
Creates a new array set copying the contents of a given set.
ByteArraySet(ByteSet) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteArraySet
Creates a new array set copying the contents of a given collection.
ByteArraySet(Set<? extends Byte>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteArraySet
Creates a new array set copying the contents of a given set.
ByteArraySet(byte[], int) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteArraySet
Creates a new array set using the given backing array and the given number of elements of the array.
ByteAVLTreeSet - Class in it.unimi.dsi.fastutil.bytes
A type-specific AVL tree set with a fast, small-footprint implementation.
ByteAVLTreeSet() - Constructor for class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
Creates a new empty tree set.
ByteAVLTreeSet(Comparator<? super Byte>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
Creates a new empty tree set with the given comparator.
ByteAVLTreeSet(Collection<? extends Byte>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
Creates a new tree set copying a given set.
ByteAVLTreeSet(SortedSet<Byte>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
Creates a new tree set copying a given sorted set (and its Comparator).
ByteAVLTreeSet(ByteCollection) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
Creates a new tree set copying a given type-specific collection.
ByteAVLTreeSet(ByteSortedSet) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
Creates a new tree set copying a given type-specific sorted set (and its Comparator).
ByteAVLTreeSet(ByteIterator) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
Creates a new tree set using elements provided by a type-specific iterator.
ByteAVLTreeSet(Iterator<?>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
Creates a new tree set using elements provided by an iterator.
ByteAVLTreeSet(byte[], int, int, Comparator<? super Byte>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
Creates a new tree set and fills it with the elements of a given array using a given Comparator.
ByteAVLTreeSet(byte[], int, int) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
Creates a new tree set and fills it with the elements of a given array.
ByteAVLTreeSet(byte[]) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
Creates a new tree set copying the elements of an array.
ByteAVLTreeSet(byte[], Comparator<? super Byte>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
Creates a new tree set copying the elements of an array using a given Comparator.
ByteLinkedOpenCustomHashSet - Class in it.unimi.dsi.fastutil.bytes
A type-specific linked hash set with with a fast, small-footprint implementation.
ByteLinkedOpenCustomHashSet(int, float, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Creates a new hash set.
ByteLinkedOpenCustomHashSet(int, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor.
ByteLinkedOpenCustomHashSet(ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Creates a new hash set with initial expected Hash.DEFAULT_INITIAL_SIZE elements and Hash.DEFAULT_LOAD_FACTOR as load factor.
ByteLinkedOpenCustomHashSet(Collection<? extends Byte>, float, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Creates a new hash set copying a given collection.
ByteLinkedOpenCustomHashSet(Collection<? extends Byte>, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given collection.
ByteLinkedOpenCustomHashSet(ByteCollection, float, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Creates a new hash set copying a given type-specific collection.
ByteLinkedOpenCustomHashSet(ByteCollection, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific collection.
ByteLinkedOpenCustomHashSet(ByteIterator, float, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Creates a new hash set using elements provided by a type-specific iterator.
ByteLinkedOpenCustomHashSet(ByteIterator, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
ByteLinkedOpenCustomHashSet(Iterator<?>, float, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Creates a new hash set using elements provided by an iterator.
ByteLinkedOpenCustomHashSet(Iterator<?>, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator.
ByteLinkedOpenCustomHashSet(byte[], int, int, float, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Creates a new hash set and fills it with the elements of a given array.
ByteLinkedOpenCustomHashSet(byte[], int, int, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor and fills it with the elements of a given array.
ByteLinkedOpenCustomHashSet(byte[], float, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Creates a new hash set copying the elements of an array.
ByteLinkedOpenCustomHashSet(byte[], ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying the elements of an array.
ByteLinkedOpenHashSet - Class in it.unimi.dsi.fastutil.bytes
A type-specific linked hash set with with a fast, small-footprint implementation.
ByteLinkedOpenHashSet(int, float) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set.
ByteLinkedOpenHashSet(int) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor.
ByteLinkedOpenHashSet() - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set with initial expected Hash.DEFAULT_INITIAL_SIZE elements and Hash.DEFAULT_LOAD_FACTOR as load factor.
ByteLinkedOpenHashSet(Collection<? extends Byte>, float) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set copying a given collection.
ByteLinkedOpenHashSet(Collection<? extends Byte>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given collection.
ByteLinkedOpenHashSet(ByteCollection, float) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set copying a given type-specific collection.
ByteLinkedOpenHashSet(ByteCollection) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific collection.
ByteLinkedOpenHashSet(ByteIterator, float) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set using elements provided by a type-specific iterator.
ByteLinkedOpenHashSet(ByteIterator) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
ByteLinkedOpenHashSet(Iterator<?>, float) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set using elements provided by an iterator.
ByteLinkedOpenHashSet(Iterator<?>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator.
ByteLinkedOpenHashSet(byte[], int, int, float) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set and fills it with the elements of a given array.
ByteLinkedOpenHashSet(byte[], int, int) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor and fills it with the elements of a given array.
ByteLinkedOpenHashSet(byte[], float) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set copying the elements of an array.
ByteLinkedOpenHashSet(byte[]) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying the elements of an array.
ByteOpenCustomHashSet - Class in it.unimi.dsi.fastutil.bytes
A type-specific hash set with a fast, small-footprint implementation whose hashing strategy is specified at creation time.
ByteOpenCustomHashSet(int, float, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Creates a new hash set.
ByteOpenCustomHashSet(int, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor.
ByteOpenCustomHashSet(ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Creates a new hash set with initial expected Hash.DEFAULT_INITIAL_SIZE elements and Hash.DEFAULT_LOAD_FACTOR as load factor.
ByteOpenCustomHashSet(Collection<? extends Byte>, float, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Creates a new hash set copying a given collection.
ByteOpenCustomHashSet(Collection<? extends Byte>, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given collection.
ByteOpenCustomHashSet(ByteCollection, float, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Creates a new hash set copying a given type-specific collection.
ByteOpenCustomHashSet(ByteCollection, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific collection.
ByteOpenCustomHashSet(ByteIterator, float, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Creates a new hash set using elements provided by a type-specific iterator.
ByteOpenCustomHashSet(ByteIterator, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
ByteOpenCustomHashSet(Iterator<?>, float, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Creates a new hash set using elements provided by an iterator.
ByteOpenCustomHashSet(Iterator<?>, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator.
ByteOpenCustomHashSet(byte[], int, int, float, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Creates a new hash set and fills it with the elements of a given array.
ByteOpenCustomHashSet(byte[], int, int, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor and fills it with the elements of a given array.
ByteOpenCustomHashSet(byte[], float, ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Creates a new hash set copying the elements of an array.
ByteOpenCustomHashSet(byte[], ByteHash.Strategy) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying the elements of an array.
ByteOpenHashSet - Class in it.unimi.dsi.fastutil.bytes
A type-specific hash set with with a fast, small-footprint implementation.
ByteOpenHashSet(int, float) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set.
ByteOpenHashSet(int) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor.
ByteOpenHashSet() - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set with initial expected Hash.DEFAULT_INITIAL_SIZE elements and Hash.DEFAULT_LOAD_FACTOR as load factor.
ByteOpenHashSet(Collection<? extends Byte>, float) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set copying a given collection.
ByteOpenHashSet(Collection<? extends Byte>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given collection.
ByteOpenHashSet(ByteCollection, float) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set copying a given type-specific collection.
ByteOpenHashSet(ByteCollection) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying a given type-specific collection.
ByteOpenHashSet(ByteIterator, float) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set using elements provided by a type-specific iterator.
ByteOpenHashSet(ByteIterator) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by a type-specific iterator.
ByteOpenHashSet(Iterator<?>, float) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set using elements provided by an iterator.
ByteOpenHashSet(Iterator<?>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using elements provided by an iterator.
ByteOpenHashSet(byte[], int, int, float) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set and fills it with the elements of a given array.
ByteOpenHashSet(byte[], int, int) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor and fills it with the elements of a given array.
ByteOpenHashSet(byte[], float) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set copying the elements of an array.
ByteOpenHashSet(byte[]) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor copying the elements of an array.
ByteRBTreeSet - Class in it.unimi.dsi.fastutil.bytes
A type-specific red-black tree set with a fast, small-footprint implementation.
ByteRBTreeSet() - Constructor for class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
Creates a new empty tree set.
ByteRBTreeSet(Comparator<? super Byte>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
Creates a new empty tree set with the given comparator.
ByteRBTreeSet(Collection<? extends Byte>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
Creates a new tree set copying a given collection.
ByteRBTreeSet(SortedSet<Byte>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
Creates a new tree set copying a given sorted set (and its Comparator).
ByteRBTreeSet(ByteCollection) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
Creates a new tree set copying a given type-specific collection.
ByteRBTreeSet(ByteSortedSet) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
Creates a new tree set copying a given type-specific sorted set (and its Comparator).
ByteRBTreeSet(ByteIterator) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
Creates a new tree set using elements provided by a type-specific iterator.
ByteRBTreeSet(Iterator<?>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
Creates a new tree set using elements provided by an iterator.
ByteRBTreeSet(byte[], int, int, Comparator<? super Byte>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
Creates a new tree set and fills it with the elements of a given array using a given Comparator.
ByteRBTreeSet(byte[], int, int) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
Creates a new tree set and fills it with the elements of a given array.
ByteRBTreeSet(byte[]) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
Creates a new tree set copying the elements of an array.
ByteRBTreeSet(byte[], Comparator<? super Byte>) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
Creates a new tree set copying the elements of an array using a given Comparator.
ByteSet - Interface in it.unimi.dsi.fastutil.bytes
A type-specific Set; provides some additional methods that use polymorphism to avoid (un)boxing.
ByteSets - Class in it.unimi.dsi.fastutil.bytes
A class providing static methods and objects that do useful things with type-specific sets.
ByteSets.EmptySet - Class in it.unimi.dsi.fastutil.bytes
An immutable class representing the empty set and implementing a type-specific set interface.
ByteSets.Singleton - Class in it.unimi.dsi.fastutil.bytes
An immutable class representing a type-specific singleton set.
ByteSets.SynchronizedSet - Class in it.unimi.dsi.fastutil.bytes
A synchronized wrapper class for sets.
ByteSets.UnmodifiableSet - Class in it.unimi.dsi.fastutil.bytes
An unmodifiable wrapper class for sets.
ByteSortedSet - Interface in it.unimi.dsi.fastutil.bytes
A type-specific SortedSet; provides some additional methods that use polymorphism to avoid (un)boxing.
ByteSortedSets - Class in it.unimi.dsi.fastutil.bytes
A class providing static methods and objects that do useful things with type-specific sorted sets.
ByteSortedSets.EmptySet - Class in it.unimi.dsi.fastutil.bytes
An immutable class representing the empty sorted set and implementing a type-specific set interface.
ByteSortedSets.Singleton - Class in it.unimi.dsi.fastutil.bytes
A class representing a singleton sorted set.
ByteSortedSets.SynchronizedSortedSet - Class in it.unimi.dsi.fastutil.bytes
A synchronized wrapper class for sorted sets.
ByteSortedSets.UnmodifiableSortedSet - Class in it.unimi.dsi.fastutil.bytes
An unmodifiable wrapper class for sorted sets.

C

clear() - Method in class it.unimi.dsi.fastutil.bytes.ByteArraySet
 
clear() - Method in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
 
clear() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
 
clear() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
 
clear() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
 
clear() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
 
clear() - Method in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
 
clone() - Method in class it.unimi.dsi.fastutil.bytes.ByteArraySet
Returns a deep copy of this set.
clone() - Method in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
Returns a deep copy of this tree set.
clone() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Returns a deep copy of this set.
clone() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Returns a deep copy of this set.
clone() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Returns a deep copy of this set.
clone() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Returns a deep copy of this set.
clone() - Method in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
Returns a deep copy of this tree set.
clone() - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.EmptySet
 
clone() - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
clone() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.EmptySet
 
comparator() - Method in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
 
comparator() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
comparator() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
comparator() - Method in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
 
comparator() - Method in interface it.unimi.dsi.fastutil.bytes.ByteSortedSet
comparator() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.EmptySet
 
comparator() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.Singleton
 
comparator() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.SynchronizedSortedSet
 
comparator() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.UnmodifiableSortedSet
 
contains(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteArraySet
 
contains(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
 
contains(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
 
contains(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
 
contains(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
 
contains(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
 
contains(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
 
contains(Object) - Method in interface it.unimi.dsi.fastutil.bytes.ByteSet
Deprecated.
Please use the corresponding type-specific method instead.
contains(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
containsNull - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Whether this set contains the null key.
containsNull - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Whether this set contains the null key.
containsNull - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Whether this set contains the null key.
containsNull - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Whether this set contains the null key.
count - Variable in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
Number of elements in this set.
count - Variable in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
Number of elements in this set.

E

element - Variable in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
EMPTY_SET - Static variable in class it.unimi.dsi.fastutil.bytes.ByteSets
An empty set (immutable).
EMPTY_SET - Static variable in class it.unimi.dsi.fastutil.bytes.ByteSortedSets
An empty sorted set (immutable).
emptySet() - Static method in class it.unimi.dsi.fastutil.bytes.ByteSets
Returns an empty set (immutable).
EmptySet() - Constructor for class it.unimi.dsi.fastutil.bytes.ByteSets.EmptySet
 
EmptySet() - Constructor for class it.unimi.dsi.fastutil.bytes.ByteSortedSets.EmptySet
 
ensureCapacity(int) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Ensures that this set can hold a certain number of elements without rehashing.
ensureCapacity(int) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Ensures that this set can hold a certain number of elements without rehashing.
ensureCapacity(int) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Ensures that this set can hold a certain number of elements without rehashing.
ensureCapacity(int) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Ensures that this set can hold a certain number of elements without rehashing.
equals(Object) - Method in class it.unimi.dsi.fastutil.bytes.AbstractByteSet
 
equals(Object) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.EmptySet
 
equals(Object) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.UnmodifiableSet
 

F

f - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
The acceptable load factor.
f - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
The acceptable load factor.
f - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
The acceptable load factor.
f - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
The acceptable load factor.
first - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
The index of the first entry in iteration order.
first - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
The index of the first entry in iteration order.
first() - Method in interface it.unimi.dsi.fastutil.bytes.ByteSortedSet
Deprecated.
Please use the corresponding type-specific method instead.
first() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.EmptySet
Deprecated.
Please use the corresponding type-specific method instead.
first() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.Singleton
Deprecated.
Please use the corresponding type-specific method instead.
first() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.SynchronizedSortedSet
Deprecated.
Please use the corresponding type-specific method instead.
first() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.UnmodifiableSortedSet
Deprecated.
Please use the corresponding type-specific method instead.
firstByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
 
firstByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Returns the first element of this set in iteration order.
firstByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Returns the first element of this set in iteration order.
firstByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
 
firstByte() - Method in interface it.unimi.dsi.fastutil.bytes.ByteSortedSet
Returns the first (lowest) element currently in this set.
firstByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.EmptySet
 
firstByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.Singleton
 
firstByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.SynchronizedSortedSet
 
firstByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.UnmodifiableSortedSet
 
firstEntry - Variable in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
The entry of the first element of this set.
firstEntry - Variable in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
The entry of the first element of this set.
fixPointers(int) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Modifies the ByteLinkedOpenCustomHashSet.link vector so that the given entry is removed.
fixPointers(int, int) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Modifies the ByteLinkedOpenCustomHashSet.link vector for a shift from s to d.
fixPointers(int) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Modifies the ByteLinkedOpenHashSet.link vector so that the given entry is removed.
fixPointers(int, int) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Modifies the ByteLinkedOpenHashSet.link vector for a shift from s to d.
forEach(ByteConsumer) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
 
forEach(ByteConsumer) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
 
forEach(ByteConsumer) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
 
forEach(ByteConsumer) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
 
forEach(Consumer<? super Byte>) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
Deprecated.
forEach(ByteConsumer) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
from(byte) - Static method in class it.unimi.dsi.fastutil.bytes.ByteSets
Returns an unmodifiable type-specific set containing elements greater than or equal to a given element.
fromTo(byte, byte) - Static method in class it.unimi.dsi.fastutil.bytes.ByteSets
Returns an unmodifiable type-specific set containing elements in the given range.

H

hashCode() - Method in class it.unimi.dsi.fastutil.bytes.AbstractByteSet
Returns a hash code for this set.
hashCode() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Returns a hash code for this set.
hashCode() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Returns a hash code for this set.
hashCode() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Returns a hash code for this set.
hashCode() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Returns a hash code for this set.
hashCode() - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.UnmodifiableSet
 
headSet(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
 
headSet(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Returns a view of the portion of this sorted set whose elements are strictly less than toElement.
headSet(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Returns a view of the portion of this sorted set whose elements are strictly less than toElement.
headSet(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
 
headSet(byte) - Method in interface it.unimi.dsi.fastutil.bytes.ByteSortedSet
Returns a view of the portion of this sorted set whose elements are strictly less than toElement.
headSet(Byte) - Method in interface it.unimi.dsi.fastutil.bytes.ByteSortedSet
Deprecated.
Please use the corresponding type-specific method instead.
headSet(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.EmptySet
 
headSet(Byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.EmptySet
Deprecated.
Please use the corresponding type-specific method instead.
headSet(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.Singleton
 
headSet(Byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.Singleton
Deprecated.
Please use the corresponding type-specific method instead.
headSet(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.SynchronizedSortedSet
 
headSet(Byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.SynchronizedSortedSet
Deprecated.
Please use the corresponding type-specific method instead.
headSet(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.UnmodifiableSortedSet
 
headSet(Byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.UnmodifiableSortedSet
Deprecated.
Please use the corresponding type-specific method instead.

I

intIterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
intSpliterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
intSpliterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.Singleton
 
isEmpty() - Method in class it.unimi.dsi.fastutil.bytes.ByteArraySet
 
isEmpty() - Method in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
 
isEmpty() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
 
isEmpty() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
 
isEmpty() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
 
isEmpty() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
 
isEmpty() - Method in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
 
it.unimi.dsi.fastutil.bytes - package it.unimi.dsi.fastutil.bytes
 
iterator() - Method in class it.unimi.dsi.fastutil.bytes.AbstractByteSet
 
iterator() - Method in class it.unimi.dsi.fastutil.bytes.AbstractByteSortedSet
 
iterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteArraySet
 
iterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
 
iterator(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
 
iterator(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Returns a type-specific list iterator on the elements in this set, starting from a given element of the set.
iterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Returns a type-specific list iterator on the elements in this set, starting from the first element.
iterator(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Returns a type-specific list iterator on the elements in this set, starting from a given element of the set.
iterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Returns a type-specific list iterator on the elements in this set, starting from the first element.
iterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
 
iterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
 
iterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
 
iterator(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
 
iterator() - Method in interface it.unimi.dsi.fastutil.bytes.ByteSet
Returns a type-specific iterator on the elements of this set.
iterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
iterator(byte) - Method in interface it.unimi.dsi.fastutil.bytes.ByteSortedSet
Returns a type-specific BidirectionalIterator on the elements in this set, starting from a given element of the domain (optional operation).
iterator() - Method in interface it.unimi.dsi.fastutil.bytes.ByteSortedSet
Returns a type-specific BidirectionalIterator on the elements in this set.
iterator(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.EmptySet
 
iterator(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.Singleton
 
iterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.SynchronizedSortedSet
 
iterator(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.SynchronizedSortedSet
 
iterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.UnmodifiableSortedSet
 
iterator(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.UnmodifiableSortedSet
 

K

key - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
The array of keys.
key - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
The array of keys.
key - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
The array of keys.
key - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
The array of keys.

L

last - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
The index of the last entry in iteration order.
last - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
The index of the last entry in iteration order.
last() - Method in interface it.unimi.dsi.fastutil.bytes.ByteSortedSet
Deprecated.
Please use the corresponding type-specific method instead.
last() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.EmptySet
Deprecated.
Please use the corresponding type-specific method instead.
last() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.Singleton
Deprecated.
Please use the corresponding type-specific method instead.
last() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.SynchronizedSortedSet
Deprecated.
Please use the corresponding type-specific method instead.
last() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.UnmodifiableSortedSet
Deprecated.
Please use the corresponding type-specific method instead.
lastByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
 
lastByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Returns the last element of this set in iteration order.
lastByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Returns the last element of this set in iteration order.
lastByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
 
lastByte() - Method in interface it.unimi.dsi.fastutil.bytes.ByteSortedSet
Returns the last (highest) element currently in this set.
lastByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.EmptySet
 
lastByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.Singleton
 
lastByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.SynchronizedSortedSet
 
lastByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.UnmodifiableSortedSet
 
lastEntry - Variable in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
The entry of the last element of this set.
lastEntry - Variable in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
The entry of the last element of this set.
link - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
For each entry, the next and the previous entry in iteration order, stored as ((prev & 0xFFFFFFFFL) << 32) | (next & 0xFFFFFFFFL).
link - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
For each entry, the next and the previous entry in iteration order, stored as ((prev & 0xFFFFFFFFL) << 32) | (next & 0xFFFFFFFFL).

M

mask - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
The mask for wrapping a position counter.
mask - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
The mask for wrapping a position counter.
mask - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
The mask for wrapping a position counter.
mask - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
The mask for wrapping a position counter.
maxFill - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Threshold after which we rehash.
maxFill - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Threshold after which we rehash.
maxFill - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Threshold after which we rehash.
maxFill - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Threshold after which we rehash.
minN - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
We never resize below this threshold, which is the construction-time {#n}.
minN - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
We never resize below this threshold, which is the construction-time {#n}.
minN - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
We never resize below this threshold, which is the construction-time {#n}.
minN - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
We never resize below this threshold, which is the construction-time {#n}.

N

n - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
The current table size.
n - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
The current table size.
n - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
The current table size.
n - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
The current table size.

O

of() - Static method in class it.unimi.dsi.fastutil.bytes.ByteArraySet
Creates a new empty array set.
of(byte) - Static method in class it.unimi.dsi.fastutil.bytes.ByteArraySet
Creates a new array set using the element given.
of(byte...) - Static method in class it.unimi.dsi.fastutil.bytes.ByteArraySet
Creates a new array set using an array of elements.
of() - Static method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new empty hash set.
of(byte) - Static method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using the given element.
of(byte, byte) - Static method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using the elements given.
of(byte, byte, byte) - Static method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using the elements given.
of(byte...) - Static method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using a list of elements.
of() - Static method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new empty hash set.
of(byte) - Static method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using the given element.
of(byte, byte) - Static method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using the elements given.
of(byte, byte, byte) - Static method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using the elements given.
of(byte...) - Static method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Creates a new hash set with Hash.DEFAULT_LOAD_FACTOR as load factor using a list of elements.
of() - Static method in interface it.unimi.dsi.fastutil.bytes.ByteSet
Returns an immutable empty set.
of(byte) - Static method in interface it.unimi.dsi.fastutil.bytes.ByteSet
Returns an immutable set with the element given.
of(byte, byte) - Static method in interface it.unimi.dsi.fastutil.bytes.ByteSet
Returns an immutable set with the elements given.
of(byte, byte, byte) - Static method in interface it.unimi.dsi.fastutil.bytes.ByteSet
Returns an immutable set with the elements given.
of(byte...) - Static method in interface it.unimi.dsi.fastutil.bytes.ByteSet
Returns an immutable list with the elements given.
ofUnchecked() - Static method in class it.unimi.dsi.fastutil.bytes.ByteArraySet
Creates a new empty array set.
ofUnchecked(byte...) - Static method in class it.unimi.dsi.fastutil.bytes.ByteArraySet
Creates a new array set using an array of elements.

R

rehash(int) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Rehashes the set.
rehash(int) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Rehashes the set.
rehash(int) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Rehashes the set.
rehash(int) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Rehashes the set.
rem(byte) - Method in class it.unimi.dsi.fastutil.bytes.AbstractByteSet
Deprecated.
Please use remove() instead.
rem(byte) - Method in interface it.unimi.dsi.fastutil.bytes.ByteSet
Deprecated.
Please use remove() instead.
rem(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.EmptySet
Deprecated.
rem(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.SynchronizedSet
Deprecated.
rem(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.UnmodifiableSet
Deprecated.
remove(byte) - Method in class it.unimi.dsi.fastutil.bytes.AbstractByteSet
Removes an element from this set.
remove(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteArraySet
 
remove(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
 
remove(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
 
remove(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
 
remove(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
 
remove(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
 
remove(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
 
remove(byte) - Method in interface it.unimi.dsi.fastutil.bytes.ByteSet
Removes an element from this set.
remove(Object) - Method in interface it.unimi.dsi.fastutil.bytes.ByteSet
Deprecated.
Please use the corresponding type-specific method instead.
remove(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.EmptySet
 
remove(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
remove(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.SynchronizedSet
 
remove(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.UnmodifiableSet
 
removeAll(Collection<?>) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
removeAll(ByteCollection) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
removeFirstByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Removes the first key in iteration order.
removeFirstByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Removes the first key in iteration order.
removeIf(Predicate<? super Byte>) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
Deprecated.
removeIf(BytePredicate) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
removeLastByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Removes the the last key in iteration order.
removeLastByte() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Removes the the last key in iteration order.
retainAll(Collection<?>) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
retainAll(ByteCollection) - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 

S

shiftKeys(int) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
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.bytes.ByteLinkedOpenHashSet
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.bytes.ByteOpenCustomHashSet
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.bytes.ByteOpenHashSet
Shifts left entries with the specified hash code, starting at the specified position, and empties the resulting free entry.
singleton(byte) - Static method in class it.unimi.dsi.fastutil.bytes.ByteSets
Returns a type-specific immutable set containing only the specified element.
singleton(Byte) - Static method in class it.unimi.dsi.fastutil.bytes.ByteSets
Returns a type-specific immutable set containing only the specified element.
Singleton(byte) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
singleton(byte) - Static method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets
Returns a type-specific immutable sorted set containing only the specified element.
singleton(byte, ByteComparator) - Static method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets
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.bytes.ByteSortedSets
Returns a type-specific immutable sorted set containing only the specified element.
singleton(Object, ByteComparator) - Static method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets
Returns a type-specific immutable sorted set containing only the specified element, and using a specified comparator.
Singleton(byte, ByteComparator) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteSortedSets.Singleton
 
size - Variable in class it.unimi.dsi.fastutil.bytes.ByteArraySet
The number of valid entries in ByteArraySet.a.
size() - Method in class it.unimi.dsi.fastutil.bytes.ByteArraySet
 
size() - Method in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
 
size - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Number of entries in the set (including the null key, if present).
size() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
 
size - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Number of entries in the set (including the null key, if present).
size() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
 
size - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Number of entries in the set (including the null key, if present).
size() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
 
size - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Number of entries in the set (including the null key, if present).
size() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
 
size() - Method in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
 
size() - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
sortedSet - Variable in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.SynchronizedSortedSet
 
sortedSet - Variable in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.UnmodifiableSortedSet
 
spliterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteArraySet
Returns a type-specific spliterator on the elements of this set.
spliterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Returns a type-specific spliterator on the elements of this sorted-set.
spliterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Returns a type-specific spliterator on the elements of this sorted-set.
spliterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
 
spliterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
 
spliterator() - Method in interface it.unimi.dsi.fastutil.bytes.ByteSet
Returns a type-specific spliterator on the elements of this set.
spliterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
spliterator() - Method in interface it.unimi.dsi.fastutil.bytes.ByteSortedSet
Returns a type-specific spliterator on the elements of this sorted-set.
spliterator() - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.Singleton
 
storedComparator - Variable in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
This set's comparator, as provided in the constructor.
storedComparator - Variable in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
This set's comparator, as provided in the constructor.
strategy - Variable in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
The hash strategy of this custom set.
strategy() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Returns the hashing strategy.
strategy - Variable in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
The hash strategy of this custom set.
strategy() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Returns the hashing strategy.
subSet(byte, byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
 
subSet(byte, byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Returns a view of the portion of this sorted set whose elements range from fromElement, inclusive, to toElement, exclusive.
subSet(byte, byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Returns a view of the portion of this sorted set whose elements range from fromElement, inclusive, to toElement, exclusive.
subSet(byte, byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
 
subSet(byte, byte) - Method in interface it.unimi.dsi.fastutil.bytes.ByteSortedSet
Returns a view of the portion of this sorted set whose elements range from fromElement, inclusive, to toElement, exclusive.
subSet(Byte, Byte) - Method in interface it.unimi.dsi.fastutil.bytes.ByteSortedSet
Deprecated.
Please use the corresponding type-specific method instead.
subSet(byte, byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.EmptySet
 
subSet(Byte, Byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.EmptySet
Deprecated.
Please use the corresponding type-specific method instead.
subSet(byte, byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.Singleton
 
subSet(Byte, Byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.Singleton
Deprecated.
Please use the corresponding type-specific method instead.
subSet(byte, byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.SynchronizedSortedSet
 
subSet(Byte, Byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.SynchronizedSortedSet
Deprecated.
Please use the corresponding type-specific method instead.
subSet(byte, byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.UnmodifiableSortedSet
 
subSet(Byte, Byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.UnmodifiableSortedSet
Deprecated.
Please use the corresponding type-specific method instead.
synchronize(ByteSet) - Static method in class it.unimi.dsi.fastutil.bytes.ByteSets
Returns a synchronized type-specific set backed by the given type-specific set.
synchronize(ByteSet, Object) - Static method in class it.unimi.dsi.fastutil.bytes.ByteSets
Returns a synchronized type-specific set backed by the given type-specific set, using an assigned object to synchronize.
synchronize(ByteSortedSet) - Static method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets
Returns a synchronized type-specific sorted set backed by the given type-specific sorted set.
synchronize(ByteSortedSet, Object) - Static method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets
Returns a synchronized type-specific sorted set backed by the given type-specific sorted set, using an assigned object to synchronize.
SynchronizedSet(ByteSet, Object) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteSets.SynchronizedSet
 
SynchronizedSet(ByteSet) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteSets.SynchronizedSet
 
SynchronizedSortedSet(ByteSortedSet, Object) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteSortedSets.SynchronizedSortedSet
 
SynchronizedSortedSet(ByteSortedSet) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteSortedSets.SynchronizedSortedSet
 

T

tailSet(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
 
tailSet(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Returns a view of the portion of this sorted set whose elements are greater than or equal to fromElement.
tailSet(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Returns a view of the portion of this sorted set whose elements are greater than or equal to fromElement.
tailSet(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
 
tailSet(byte) - Method in interface it.unimi.dsi.fastutil.bytes.ByteSortedSet
Returns a view of the portion of this sorted set whose elements are greater than or equal to fromElement.
tailSet(Byte) - Method in interface it.unimi.dsi.fastutil.bytes.ByteSortedSet
Deprecated.
Please use the corresponding type-specific method instead.
tailSet(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.EmptySet
 
tailSet(Byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.EmptySet
Deprecated.
Please use the corresponding type-specific method instead.
tailSet(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.Singleton
 
tailSet(Byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.Singleton
Deprecated.
Please use the corresponding type-specific method instead.
tailSet(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.SynchronizedSortedSet
 
tailSet(Byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.SynchronizedSortedSet
Deprecated.
Please use the corresponding type-specific method instead.
tailSet(byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.UnmodifiableSortedSet
 
tailSet(Byte) - Method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets.UnmodifiableSortedSet
Deprecated.
Please use the corresponding type-specific method instead.
to(byte) - Static method in class it.unimi.dsi.fastutil.bytes.ByteSets
Returns an unmodifiable type-specific set containing elements smaller than a given element.
toArray(byte[]) - Method in class it.unimi.dsi.fastutil.bytes.ByteArraySet
 
toArray() - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
Deprecated.
toByteArray() - Method in class it.unimi.dsi.fastutil.bytes.ByteArraySet
 
toByteArray() - Method in class it.unimi.dsi.fastutil.bytes.ByteSets.Singleton
 
tree - Variable in class it.unimi.dsi.fastutil.bytes.ByteAVLTreeSet
A reference to the root entry.
tree - Variable in class it.unimi.dsi.fastutil.bytes.ByteRBTreeSet
A reference to the root entry.
trim() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Rehashes this set, making the table as small as possible.
trim(int) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenCustomHashSet
Rehashes this set if the table is too large.
trim() - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Rehashes this set, making the table as small as possible.
trim(int) - Method in class it.unimi.dsi.fastutil.bytes.ByteLinkedOpenHashSet
Rehashes this set if the table is too large.
trim() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Rehashes this set, making the table as small as possible.
trim(int) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenCustomHashSet
Rehashes this set if the table is too large.
trim() - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Rehashes this set, making the table as small as possible.
trim(int) - Method in class it.unimi.dsi.fastutil.bytes.ByteOpenHashSet
Rehashes this set if the table is too large.

U

unmodifiable(ByteSet) - Static method in class it.unimi.dsi.fastutil.bytes.ByteSets
Returns an unmodifiable type-specific set backed by the given type-specific set.
unmodifiable(ByteSortedSet) - Static method in class it.unimi.dsi.fastutil.bytes.ByteSortedSets
Returns an unmodifiable type-specific sorted set backed by the given type-specific sorted set.
UnmodifiableSet(ByteSet) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteSets.UnmodifiableSet
 
UnmodifiableSortedSet(ByteSortedSet) - Constructor for class it.unimi.dsi.fastutil.bytes.ByteSortedSets.UnmodifiableSortedSet
 
A B C E F H I K L M N O R S T U 
Skip navigation links