From http://stdcxx.apache.org/doc/stdlibref/less-equal.html
--
You can pass a less_equal object to any algorithm that requires a binary function. For example, the sort() algorithm can accept a binary function as an alternate comparison object to sort a sequence. less_equal would be used in that algorithm in the following manner:
vector<int> vec1;
sort(vec1.begin(), vec1.end(),less_equal<int>());
--
Now I am confused, is the documentation above correct ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…