| Signature | Description |
|---|---|
enum class inclusiveness : unsigned char { begin = 1, // Include the beginning of the range and exclude the end end = 2, // Exclude the beginning of the range and include the end both = 3, // Include both tne beginning and end of the range neither = 4, // Exclude both tne beginning and end of the range }; |
This specifies including beginning and end of a range. |