Traversable.Via
module C : Preface_specs.Traversable.CORE
type 'a t = 'a C.t
The type held by the Traversable
.
type 'a iter = 'a C.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. *