-
Notifications
You must be signed in to change notification settings - Fork 30
Maintain Traverse
and TraverseFilter
documents
#122
Conversation
|
||
## Traverse | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Additional empty lines
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I checked and there is exactly 4 lines in Functor
, Foldable
, and Monad
, etc. So I concluded it's okey to have them in this doc too. lmkwdyt.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
weird. Okay, let's roll with it.
|
||
|
||
The `Traverse` typeclass is allowing to commute types from `F<G<A>>` to `G<F<A>>` over sequential execution of code. | ||
Traversal over a structure with an effect. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The main use of this is traversal over...
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks! See 4e5f8d6
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I like it :D A couple of fixes and ready to go!
typeclasses/traverse/README.md
typeclasses/traversefilter/README.md
typeclasses/functor/README.md
Traverse.kt
andTraverseFilter.kt
comments