dartz 0.0.3 dartz: ^0.0.3 copied to clipboard
Functional Programming in Dart. Heavily inspired by scalaz (https://github.com/scalaz/scalaz).
Changelog #
0.0.3 #
- Default foldMap for Traversable is now trampolined
- Moved State primitives to StateMonad
- MonadPlus instance for List
- reverse operation for Order
- modify, foldLeftKV, foldRightKV, foldMapKV, mapWithKey and optimized Foldable operations for IMap
- curried appendC for Semigroup
0.0.2 #
- Order constructs (order, orderBy, min and max semigroups)
- length, any, all, minimum and maximum operations for Foldable
- Plus, PlusEmpty, ApplicativePlus and MonadPlus type classes
- MonadPlus instances for Option and IList
- ISet monoid and operations for union, intersection and difference
- Option and Either utils (cata, toOption, catching)
- StateT
- Trampoline
- mapWithIndex and zipWithIndex for Traversable
0.0.1 #
- The immutable conception