Trait polars_core::frame::group_by::aggregations::TakeExtremum

source ·
pub trait TakeExtremum {
    // Required methods
    fn take_min(self, other: Self) -> Self;
    fn take_max(self, other: Self) -> Self;
}
Available on crate feature algorithm_group_by only.

Required Methods§

source

fn take_min(self, other: Self) -> Self

source

fn take_max(self, other: Self) -> Self

Object Safety§

This trait is not object safe.

Implementations on Foreign Types§

source§

impl TakeExtremum for f32

source§

fn take_min(self, other: Self) -> Self

source§

fn take_max(self, other: Self) -> Self

source§

impl TakeExtremum for f64

source§

fn take_min(self, other: Self) -> Self

source§

fn take_max(self, other: Self) -> Self

source§

impl TakeExtremum for i32

source§

fn take_min(self, other: Self) -> Self

source§

fn take_max(self, other: Self) -> Self

source§

impl TakeExtremum for i64

source§

fn take_min(self, other: Self) -> Self

source§

fn take_max(self, other: Self) -> Self

source§

impl TakeExtremum for i128

source§

fn take_min(self, other: Self) -> Self

source§

fn take_max(self, other: Self) -> Self

source§

impl TakeExtremum for u32

source§

fn take_min(self, other: Self) -> Self

source§

fn take_max(self, other: Self) -> Self

source§

impl TakeExtremum for u64

source§

fn take_min(self, other: Self) -> Self

source§

fn take_max(self, other: Self) -> Self

Implementors§