IntHashSet
A hash set of ints, implemented using open addressing with linear probing for collision resolution.
Mostly forked and trimmed from com.carrotsearch.hppc.IntHashSet
github: https://github.com/carrotsearch/hppc release 0.10.0
Constructors
Properties
Functions
Adds all elements from the given iterable to this set.
Adds all elements from the given set to this set.
Adds all elements from the given list (vararg) to this set.
Ensure this container can hold at least the given number of elements without resizing its buffers.
Inserts a key for an index that is not present in the set. This method may help in avoiding double recalculation of the key's hash.
Removes a key at an index previously acquired from .indexOf.
Replaces the existing equivalent key with the given one and returns any previous value stored for that key.
Return the memory usage of this object in bytes. Negative values are illegal.
Removes all keys present in a given container.