Source file stringable.ml

1
2
3
4
5
module type S = sig 
  type t 
  val to_string : t -> string
  val of_string : string -> t 
end