package clarity

  1. Overview
  2. Docs

Foldable signatures

module type Basic = sig ... end
module type S = sig ... end
module Make (F : Basic) : S with type 'a t := 'a F.t
module type M = sig ... end
module type M2 = sig ... end
module type M3 = sig ... end