Trait polars::frame::group_by::aggregations::AggList

source ·
pub trait AggList {
    // Required method
    unsafe fn agg_list(&self, _groups: &GroupsProxy) -> Series;
}
Available on crate feature algorithm_group_by only.

Required Methods§

source

unsafe fn agg_list(&self, _groups: &GroupsProxy) -> Series

§Safety

groups should be in bounds

Implementors§

source§

impl AggList for ChunkedArray<BinaryType>

source§

impl AggList for ChunkedArray<BooleanType>

source§

impl AggList for ChunkedArray<FixedSizeListType>

Available on crate feature dtype-array only.
source§

impl AggList for ChunkedArray<ListType>

source§

impl AggList for ChunkedArray<StringType>

source§

impl AggList for StructChunked

Available on crate feature dtype-struct only.
source§

impl<T> AggList for ChunkedArray<ObjectType<T>>
where T: PolarsObject,

Available on crate feature object only.
source§

impl<T> AggList for ChunkedArray<T>