Having been tainted by Linq, I\'m reluctant to give it up. However, for some things I just need to use C++.
The real strength of linq as a linq-consumer (i.e. to me) li
See this Google Groups thread.
vector numbers = {1, 2, 3, 4, 8, 5, 9 , 24, 19, 15, 12 }
auto query =
from(numbers).
where([](int i) { return i < 15 && i > 10}).
select(fields::full_object);
I couldn't find anything more or less "official" or widely accepted, but you can try contacting the author of the original post.