Overview
The Range class is used to describe the upper and lower bounds of an object and contains two pieces of information:
1 2 | T *min_; T *max_; |
min_ indicates the pointer to the lower bound of an object and max_ indicates the pointer to the upper bound of an object. You can define the types of the upper and lower bounds.
Header Files to Be Included
1 | #include <range.h> |
Parent topic: Range