functional_cpp
functional_cpp copied to clipboard
A wrapper of common C++ std types for functional programming
Results
2
functional_cpp issues
Sort by
recently updated
recently updated
newest added
Similarly to fcpp::vector, we can write a wrapper for std::map. Possible names: fcpp::map fcpp::dictionary (inspired from C#, Python, Swift etc)
enhancement
Consider the following example from the documentation ```c++ const auto employees_below_40 = ages .zip(names) .map([](const auto& pair) { return person(pair.first, pair.second); }) .filter([](const auto& person) { return person.age < 40;...
enhancement