package olmi

  1. Overview
  2. Docs
include OlmiInterfaces.COMMON
type 'a t
val return : 'a -> 'a t

Place a value in a minimal monadic context

val join : 'a t t -> 'a t

The join function is the conventional monad join operator. It is used to remove one level of monadic structure, projecting its bound argument into the outer level.

val fmap : ('a -> 'b) -> 'a t -> 'b t

Sequential application