/// Estimate a statistic of a sequence of numbers ("population").
pubtraitEstimate{/// Add an observation sampled from the population.
fnadd(&mutself, x:f64);/// Estimate the statistic of the population.
fnestimate(&self)->f64;}/// Merge another sample into this one.
pubtraitMerge{fnmerge(&mutself, other:&Self);}