pub trait Median: Distribution {
    fn median(&self) -> f64;
}
Expand description

A distribution capable of computing the median.

The trait is applicable when exactly one median exists.

Required Methods

Compute the median.

Implementors