package colombe

  1. Overview
  2. Docs

Module Colombe.SigsSource

Sourcemodule type FUNCTOR = sig ... end
Sourcetype (+'a, 't) io
Sourcetype ('l, 'r) either =
  1. | L of 'l
  2. | R of 'r
Sourcetype 't impl = {
  1. bind : 'a 'b. ('a, 't) io -> ('a -> ('b, 't) io) -> ('b, 't) io;
  2. return : 'a. 'a -> ('a, 't) io;
}
Sourcetype ('flow, 's) rdwr = {
  1. rd : 'flow -> bytes -> int -> int -> ([ `End | `Len of int ], 's) io;
  2. wr : 'flow -> string -> int -> int -> (unit, 's) io;
}
Sourcemodule type X = sig ... end
Sourcemodule Make (T : FUNCTOR) : X with type 'a s = 'a T.t
OCaml

Innovation. Community. Security.