Template Struct RangeOrSingleValue#

Struct Documentation#

template<typename t>
struct RangeOrSingleValue#

This struct represents either a single value or a range.

Public Members

bool singleValue#

True if this struct represents a single value. In this case, the property end is invalid.

t startOrSingleValue#

The start value of a range (in the case that singleValue is false) or the single value (if singleValue is true).

t end#

The end of the range (only valid if singleValue is false).