Initializes the hash set with the given initial capacity.
Disallow copy construction
Removes all items from the hash set.
Inserts the gien item into the set.
Inserts the gien item into the set.
the element type of the hash set
the hash function to use
if true, calls to GC.addRange and GC.removeRange will be used to ensure that the GC does not accidentally free memory owned by this container.
Simple open-addressed hash set. Use this instead of HashSet when the size and quantity of the data to be inserted is small.