Overview

The Range class is used to describe the upper and lower bounds of an object and contains two pieces of information:

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.