package gapi-ocaml

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

Parameters

module T : sig ... end

Signature

include Monad with type 'a t = T.s -> 'a * T.s
type 'a t = T.s -> 'a * T.s
val return : 'a -> 'a t
val bind : 'a t -> ('a -> 'b t) -> 'b t
val get : 'a -> 'a * 'a
val put : 'a -> 'b -> unit * 'a