下载
中文
注册

GetMin

函数功能

获取最小的T对象指针

函数原型

const T *GetMin() const;
T *GetMin();

参数说明

无。

返回值说明

返回最小的T对象指针。

约束说明

无。

调用示例

int min = -1;
int max = 1024;
Range<int> range(&min. &max);

auto ret = range.GetMin(); // ret指针指向min