GetMin
Description
Obtains the minimum T object pointer.
Prototype
const T *GetMin() const
T *GetMin()
Parameters
None
Returns
Minimum T object pointer
Restrictions
None
Example
int min = -1; int max = 1024; Range<int> range(&min. &max); auto ret = range.GetMin(); // ret points to min.
Parent topic: Range