jkalias

Results 4 issues of jkalias

@stephentyrone Here is my implementation for the issue. Please let me know if I missed something.

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