package olmi

  1. Overview
  2. Docs
Olmi provide functor to generate monadic combinators with a minimal interface

Install

dune-project
 Dependency

Authors

Maintainers

Sources

olmi.tar.gz
sha256=f77661fab4f36ef2f439cbd93a722d2d21d88e94815baf79b509636169174a0e
md5=d82dae00b83488d93e7138831c2bc351

doc/src/olmiExamples/olmiIdentity.ml.html

Source file olmiIdentity.ml

1
2
3
4
5
6
7
8
9
10
open Olmi

module Requirement = Make.WithBind(
  struct
    type 'a t = 'a
    let return x = x
    let bind x f = f x
  end)

include Make.Monad(Requirement)
OCaml

Innovation. Community. Security.