How to sum all values in std::map<std::string, size_t> collection without using for loop? The map resides as private member in a class. Accumulation is performed in public function call.
I do not want to use boost or other 3rd parties.
|
As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.
|
You can do this with a lambda and
For GCC and Clang: compile with |
|||||
|
|
|
Use std::accumulate. But it very likely will use loop behind the scenes. |
|||||||||||||||
|