Class IIndexSet#

Class Documentation#

class IIndexSet#

Interface used to represent a set of indices. The object can be queried whether the specified index is contained in the set or not.

Public Functions

virtual bool IsContained(int index) const = 0#

Query if the specified ‘index’ is contained in the set or not.

Parameters:

index – The index to test.

Returns:

true if contained it is contained in the set, false if not.

virtual ~IIndexSet() = default#