IntSet struct

Defined in module util.intset (intset.l0).

IntSet is an open-addressing hash set of integers with linear probing.

Struct-of-arrays: states, keys.

Fields

capacity: int
count: int
tomb_count: int
states: ArrayBase*
keys: ArrayBase*