Module type Data.DATA

module type DATA = sig .. end

type t = {
   cnt : int;
   exp : float;
}
val pp : Format.formatter -> t -> unit
val show : t -> string