observe method

void observe(
  1. double v
)

Observe a new value v and store it in the corresponding buckets of a histogram without labels.

Implementation

void observe(double v) {
  _noLabelChild.observe(v);
}