std::less_equal
来自cppreference.com
< cpp | utility | functional
该页由英文版wiki使用Google Translate机器翻译而来。
该翻译可能存在错误或用词不当。鼠标停留在文本上可以看到原版本。你可以帮助我们修正错误或改进翻译。参见说明请点击这里. |
在头文件 <functional> 中定义
|
||
template< class T > struct less_equal; |
||
进行比较的函数对象。实现operator<=类型
T
.原文:
Function object for performing comparisons. Implements operator<= on type
T
.目录 |
[编辑] 注释
如果内置在operator<=不提供订单总额为指针,指针类型的部分专业化的
std::less_equal
提供,这保证了总订单.原文:
If the built-in operator<= does not provide total order for pointers, a partial specialization of
std::less_equal
for pointer types is provided, which guarantees total order.[编辑] 会员类型
类型
|
definition |
result_type
|
bool
|
first_argument_type
|
T
|
second_argument_type
|
T
|
[编辑] 成员函数
operator() |
检查如果第一个参数是“少”或“等于”第二个 原文: checks if the first argument is less than or equal to the second (公共成员函数) |
的std :: less_equal ::operator()
bool operator()( const T& lhs, const T& rhs ) const; |
||
Checks if lhs
is less than or equal to rhs
.
Parameters
lhs, rhs | - | 值进行比较
|
Return value
true if lhs <= rhs, false otherwise.
Exceptions
(none)
Possible implementation
bool operator()(const T &lhs, const T &rhs) const { return lhs <= rhs; } |