SetMax
Function Usage
Sets the maximum T object pointer.
Prototype
1 | void SetMax(T *max) |
Parameters
Parameter |
Input/Output |
Description |
|---|---|---|
max |
Input |
Maximum T object pointer. |
Returns
None
Constraints
None
Examples
1 2 3 | Range<int> range; int max = 1024; range.SetMax(&max); |
Parent topic: Range