package uspf

  1. Overview
  2. Docs
module type FUNCTOR = sig ... end
type (+'a, 't) io
type 't state = {
  1. bind : 'a 'b. ('a, 't) io -> ('a -> ('b, 't) io) -> ('b, 't) io;
  2. return : 'a. 'a -> ('a, 't) io;
}
module type X = sig ... end
module Make (T : FUNCTOR) : X with type 'a s = 'a T.t
module type FLOW = sig ... end
module type DNS = sig ... end