package monadlib

  1. Overview
  2. Docs

A monad transformer for Writer.

Parameters

module W : Writer

Signature

include BatInterfaces.Monad
type 'a m

The type of a monad producing values of type 'a.

val bind : 'a m -> ('a -> 'b m) -> 'b m

Monadic binding.

bind m f executes first m then f, using the result of m.

val return : 'a -> 'a m

Return a value, that is, put a value in the monad.

val listen : 'a m -> (W.t * 'a) m
val write : W.t -> unit m
val pass : 'a M.m -> 'a m
val run : 'a m -> (W.t * 'a) M.m
OCaml

Innovation. Community. Security.