Module Histogram.For_sexp

type 'a outer_t = 'a t
type 'a t = {
  1. boundaries : 'a array;
  2. counts : int array;
  3. sum : 'a;
  4. min : 'a option;
  5. max : 'a option;
}
val t_of_outer_t : 'a outer_t -> 'a t