Bases: object
This class provides an efficient data structure for index sets. The cost of checking whether a given index is in the set is O(1) and very very fast (optimal) at the cost of extra storage.
Create index set of given size
Clear set
Return true if set is empty
Fill index set with indices 0, 1, 2, ..., size - 1
Return position (if any) for given index
Check whether index is in set
Insert index into set
Return size of set
The membership flag