pub trait MinMaxHorizontal {
// Required methods
fn min_horizontal(&self) -> Result<Option<Column>, PolarsError>;
fn max_horizontal(&self) -> Result<Option<Column>, PolarsError>;
}Required Methods§
Sourcefn min_horizontal(&self) -> Result<Option<Column>, PolarsError>
fn min_horizontal(&self) -> Result<Option<Column>, PolarsError>
Aggregate the column horizontally to their min values.
Sourcefn max_horizontal(&self) -> Result<Option<Column>, PolarsError>
fn max_horizontal(&self) -> Result<Option<Column>, PolarsError>
Aggregate the column horizontally to their max values.
Dyn Compatibility§
This trait is dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety".