Traversable.Over_applicative
module A : Preface_specs.APPLICATIVE
module Req : Preface_specs.Traversable.WITH_TRAVERSE with type 'a t = 'a A.t
type 'a t = 'a Req.t
The type held by the Traversable
.
type 'a iter = 'a Req.iter
The iterable type held by the Traversable
.
Map each element of a structure to an action, evaluate these actions from left to right, and collect the results. *