module Entry:sig..end
Statistical data is organized into pairs of [Key, Entry], where every Entry is either a floating point or integer value.
type statistics_entry
val get_key : statistics_entry -> stringThe key of the entry.
val get_int : statistics_entry -> intThe int-value of the entry.
val get_float : statistics_entry -> floatThe float-value of the entry.
val is_int : statistics_entry -> boolTrue if the entry is uint-valued.
val is_float : statistics_entry -> boolTrue if the entry is float-valued.
val to_string_value : statistics_entry -> stringThe string representation of the entry's value.
val to_string : statistics_entry -> stringThe string representation of the entry (key and value)