Guest User

Untitled

a guest
Jul 17th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.18 KB | None | 0 0
  1. std::vector<int> some_list;
  2. int total = 0;
  3. int value = 5;
  4. std::for_each(begin(some_list), end(some_list), [&, value, this](int x) {
  5.   total += x * value * this->some_func();
  6. });
Add Comment
Please, Sign In to add comment