Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
I'd like to swim the atlantic without getting in the water? Or do you just want to avoid writing the for loop yourself? – bmargulies Dec 28 '12 at 18:19
I'm looking LINQ like functions as in C# – Chesnokov Yuriy Dec 28 '12 at 18:20
They use loops, it's just not so evident. – DeadMG Dec 28 '12 at 18:26
I know behind the scenes is the loop. I want to use shortcut with just one line of code – Chesnokov Yuriy Dec 28 '12 at 18:26

closed as not constructive by WhozCraig, mgibsonbr, Mark, Luchian Grigore, Stony Dec 28 '12 at 20:58

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.

2 Answers

up vote 3 down vote accepted

You can do this with a lambda and std::accumulate. Note you need an up to date compiler (at least MSVC 2010, Clang 3.1 or GCC 4.6):

#include <numeric>
#include <iostream>
#include <map>
#include <string>
#include <utility>

int main()
{
    const std::map<std::string, size_t> bla = {{"a", 1}, {"b", 3}};
    const size_t result = std::accumulate(std::begin(bla), std::end(bla), 0, [](const size_t previous, const std::pair<std::string,size_t>& p) { return previous+p.second; });
    std::cout << result << "\n";
}

For GCC and Clang: compile with -std=c++0x.

share|improve this answer
#include <numeric> is missing – Chesnokov Yuriy Dec 28 '12 at 18:44
@ChesnokovYuriy fixed. GCC didn't catch that, thanks. – rubenvb Dec 28 '12 at 20:37

Use std::accumulate. But it very likely will use loop behind the scenes.

share|improve this answer
how to use it? can you provide code sample? – Chesnokov Yuriy Dec 28 '12 at 18:20
No. I have to feed my children now. Look for 4 parameter version. – Tomek Dec 28 '12 at 18:21
Do you want your post to be marked as answer? I do not want to declare additional function to the 4th parameter and use some inline binding – Chesnokov Yuriy Dec 28 '12 at 18:22
5  
@ChesnokovYuriy: Stack Overflow is not a "PLZ GIVE ME TEH CODEZ" website. What specific problem are you having with using std::accumulate? It's just the same as any other 4 argument function template. – Billy ONeal Dec 28 '12 at 18:32
1  
@ChesnokovYuriy see my answer. – rubenvb Dec 28 '12 at 18:35
show 6 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.