package dkim

  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;
}
type 't both = {
  1. f : 'a 'b. ('a, 't) io -> ('b, 't) io -> ('a * 'b, '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 STREAM = sig ... end
module type DNS = sig ... end