fpdart
fpdart copied to clipboard
Functional Programming in Dart
when "pub install", fail with message like this: The current Dart SDK version is 2.1.0-dev.9.4.flutter-f9ebf21297. Because my_project depends on fp >=0.1.1 which requires SDK version
Any plans on implementing Algebraic Types like Maybe or Either?
How to iterate over strings? Since Strings are not iterable, functions like `_.map` don't work. I was thinking maybe this library could define a new class like ``` class CharList...