package interface-prime

  1. Overview
  2. Docs
module type ErrorType = sig ... end
module type S = sig ... end
module Make (M : Monad.S) (E : ErrorType) : S with type +'a t = ('a, E.t) Stdlib.result M.t and module E = E and type +'a u = 'a M.t