
6 Mar
2005
6 Mar
'05
10:23 p.m.
"Matthias Kaeppler" <nospam@digitalraid.com> wrote in message news:d0futi$j8m$1@sea.gmane.org...
But I can do it with Boost::Bind: std::sort(vec.begin(), vec.end(), boost::bind(std::less<int>(), *_1, *_2));
This looks new to me. What exactly does this do? Sort the container of pointers by applying std::less to the pointees?
Boost::Bind's solution is much better that yours, because it constists indirector_unary, indirector_binary, indirector_ternary and so on.
Read boost::bind documentation http://www.boost.org/libs/bind/bind.html. Pavel Chikulaev