Skip to content

Instantly share code, notes, and snippets.

@mryoshio
Created March 9, 2014 05:41
Show Gist options
  • Save mryoshio/9443343 to your computer and use it in GitHub Desktop.
Save mryoshio/9443343 to your computer and use it in GitHub Desktop.
sum.cpp
template<typename Container, typename Value>
Value sum(const Container& c, Value v)
{
for (auto x : c)
v += x;
return v;
}
@mryoshio
Copy link
Author

mryoshio commented Mar 9, 2014

A Tour of C++ 5.5

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment