Traits§
- Traversable
- A typeclass for traversable functors.
Functions§
- sequence
- Evaluate each computation in a
Traversable
structure and accumulate the results into anApplicative
context. - traverse
- Map each element of the
Traversable
structure to a computation, evaluate those computations and combine the results into anApplicative
context.