Trait polars_utils::min_max::MinMax  
source · pub trait MinMax: Sized {
    // Required methods
    fn nan_min_lt(&self, other: &Self) -> bool;
    fn nan_max_lt(&self, other: &Self) -> bool;
    // Provided methods
    fn min_propagate_nan(self, other: Self) -> Self { ... }
    fn max_propagate_nan(self, other: Self) -> Self { ... }
    fn min_ignore_nan(self, other: Self) -> Self { ... }
    fn max_ignore_nan(self, other: Self) -> Self { ... }
}Required Methods§
fn nan_min_lt(&self, other: &Self) -> bool
fn nan_max_lt(&self, other: &Self) -> bool
Provided Methods§
fn min_propagate_nan(self, other: Self) -> Self
fn max_propagate_nan(self, other: Self) -> Self
fn min_ignore_nan(self, other: Self) -> Self
fn max_ignore_nan(self, other: Self) -> Self
Object Safety§
This trait is not object safe.