Tagged Questions
7
votes
3answers
540 views
How to fold STL container
I need analog of Haskell's foldl function to fold any STL containers. Expected signature is like following:
template Iterator, FoldingFunction, Result
Result foldl(
Iterator begin,
Iterator end, ...
0
votes
5answers
217 views
Folding away assertions in C++ class?
So, in a non-class type of situation, I can do something like this:
int val_to_check = 0;
int some_func(int param) {
assert(val_to_check == 0);
return param*param+param;
}
int main() {
...