package travesty

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type

S0 is the signature of a monadic traversal over arity-0 types.

include Types_intf.S0
type t

The container type.

type elt

The element type.

include Generic with type 'a t := t and type 'a elt := elt

Generic refers to the container type as 'a t, and the element type as 'a elt; substitute t/elt (arity-0) or 'a t/'a (arity-1) accordingly below.

include Types_intf.Generic with type 'a t := t with type 'a elt := elt
module M : Base.Monad.S

M is the monad over which we're fold-mapping.

val map_m : t -> f:(elt -> elt M.t) -> t M.t

map_m c ~f maps f over every t in c, threading through monadic state.

OCaml

Innovation. Community. Security.