8 Mar
2006
8 Mar
'06
11:55 a.m.
"Shunsuke Sogame" wrote
Andy Little wrote:
Are there any plans for a BOOST_REVERSE_FOREACH?
I hear the new range library is under construction, which will enable:
BOOST_FOREACH (int x, vect|reversed) {
}
That looks neat!
BOOST_FOREACH (int x, ::make_reverse_range(vect)) {
That looks quite neat too... :-) Thanks! regards Andy Little