fn discard_outliers(values: Vec<ClockSkew>) -> Vec<f64>
Expand description
Remove all outliers from values
, and convert the resulting times into
f64
s.
We guarantee that no more than 1/2 of the input will be discarded.
§Panics
Panics if values is empty.