Trait polars::prelude::aggregations::AggList   
source · pub trait AggList {
    // Required method
    unsafe fn agg_list(&self, _groups: &GroupsProxy) -> Series;
}Required Methods§
sourceunsafe fn agg_list(&self, _groups: &GroupsProxy) -> Series
 
unsafe fn agg_list(&self, _groups: &GroupsProxy) -> Series
§Safety
groups should be in bounds
Implementors§
impl AggList for ChunkedArray<BinaryType>
impl AggList for ChunkedArray<BooleanType>
impl AggList for ChunkedArray<FixedSizeListType>
Available on crate feature 
dtype-array only.impl AggList for ChunkedArray<ListType>
impl AggList for ChunkedArray<StringType>
impl AggList for StructChunked
Available on crate feature 
dtype-struct only.impl<T> AggList for ChunkedArray<ObjectType<T>>where
    T: PolarsObject,
Available on crate feature 
object only.