Sigs.ml
algaeff
1 2 3 4 5 6 7 8 (** Signatures shared across different components. *) (** This is a type wrapped as a module. *) module type Type = sig (** The wrapped type. *) type t end
1 2 3 4 5 6 7 8
(** Signatures shared across different components. *) (** This is a type wrapped as a module. *) module type Type = sig (** The wrapped type. *) type t end