Skip to main content

Quantile

Trait Quantile 

Source
pub trait Quantile {
    type Output;

    // Required method
    fn quantile(
        &self,
        range: impl RangeBounds<usize>,
        n: usize,
    ) -> Option<Self::Output>;
}
Expand description

$n$ 番目の最小値クエリ。

Required Associated Types§

Required Methods§

Source

fn quantile( &self, range: impl RangeBounds<usize>, n: usize, ) -> Option<Self::Output>

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§