package travesty

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

S contains the type of OCaml let syntax bindings for Base monads.

To create an instance of S_let, use Monad_exts.Let.

type 'a t

The type of the extended monad.

val let+ : 'a t -> ('a -> 'b) -> 'b t

let+ is map.

val let* : 'a t -> ('a -> 'b t) -> 'b t

let* is bind.