類似於 < 的作用,用於比較兩個值的大小,但是是泛型函數,支持大多數類型的值比較。
其在C++庫中的定義如下:
// TEMPLATE STRUCT less
templatevoid>
{ // functor for operator<
typedef _Ty first_argument_type;
typedef
bool result_type;
const
expr bool
operator()(const _Ty& _Left, const _Ty& _Right) const
{ // apply operator< to operands
return (_Left < _Right);
}
};