Trait polars::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: f32) -> f32

source§

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

source§

impl TakeExtremum for f64

source§

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

source§

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

source§

impl TakeExtremum for i8

source§

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

source§

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

source§

impl TakeExtremum for i16

source§

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

source§

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

source§

impl TakeExtremum for i32

source§

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

source§

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

source§

impl TakeExtremum for i64

source§

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

source§

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

source§

impl TakeExtremum for i128

source§

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

source§

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

source§

impl TakeExtremum for u8

source§

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

source§

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

source§

impl TakeExtremum for u16

source§

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

source§

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

source§

impl TakeExtremum for u32

source§

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

source§

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

source§

impl TakeExtremum for u64

source§

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

source§

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

Implementors§