Module type Print.PRINTABLE_TYPE


module type PRINTABLE_TYPE = sig .. end
Signature for a type equipped with a pretty-printing function.

type t 
The type.
val print : Format.formatter -> t -> unit
A pretty-printer for this type. This function prints values of type t in the current pretty-printing box.