Std.Printable
Printable data structures.
module type S = sig ... end
Interface for printing data.
module Make (M : sig ... end) : S with type t := M.t
Implement Printable interface from the minimum implementation.
Printable