c++ Programming Glossary: foldl
How to implement folding with variadic templates http://stackoverflow.com/questions/6065810/how-to-implement-folding-with-variadic-templates typename BinaryFunc typename First typename Second auto foldl BinaryFunc func First first Second second AUTO_RETURN func std.. typename First typename Second typename... Rest auto foldl BinaryFunc func First first Second second Rest ... rest AUTO_RETURN.. func First first Second second Rest ... rest AUTO_RETURN foldl std forward BinaryFunc func func std forward First first std..
|