Skip to content

Instantly share code, notes, and snippets.

@krzkaczor
Created March 18, 2015 22:20
Show Gist options
  • Save krzkaczor/62b640f16c0aa98fb2e0 to your computer and use it in GitHub Desktop.
Save krzkaczor/62b640f16c0aa98fb2e0 to your computer and use it in GitHub Desktop.
functional programming in c++
string Individual::toString() {
return accumulate(this->genome->begin(), this->genome->end(), string(), [](const string& acc, int x) {
return acc + " " + to_string(x);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment