polars-core 0.26.1

Core of the Polars DataFrame library
Documentation
use crate::prelude::*;

pub trait PhysicalAggExpr {
    #[allow(clippy::ptr_arg)]
    fn evaluate(&self, df: &DataFrame, groups: &GroupsProxy) -> PolarsResult<Series>;

    fn root_name(&self) -> PolarsResult<&str>;
}