[][src]Trait ndarray_stats::interpolate::Interpolate

pub trait Interpolate<T> {
    pub fn __private__(&self, _: PrivateMarker);
}

Used to provide an interpolation strategy to quantile_axis_mut.

Required methods

pub fn __private__(&self, _: PrivateMarker)[src]

This method makes this trait impossible to implement outside of ndarray-stats so that we can freely add new methods, etc., to this trait without breaking changes.

We don't anticipate any other crates needing to implement this trait, but if you do have such a use-case, please let us know.

Warning This method is not considered part of the public API, and client code should not rely on it being present. It may be removed in a non-breaking release.

Loading content...

Implementors

impl<T> Interpolate<T> for Higher[src]

impl<T> Interpolate<T> for Linear where
    T: NumOps + Clone + FromPrimitive + ToPrimitive
[src]

impl<T> Interpolate<T> for Lower[src]

impl<T> Interpolate<T> for Midpoint where
    T: NumOps + Clone + FromPrimitive
[src]

impl<T> Interpolate<T> for Nearest[src]

Loading content...