pub trait Modes: Distribution {
    fn modes(&self) -> Vec<Self::Value>;
}
Expand description

A distribution capable of computing the modes.

The trait is applicable when the number of modes is finite.

Required Methods

Compute the modes.

Implementors