Trait polars_core::frame::groupby::aggregations::AggList
source · pub trait AggList {
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 StructChunked
Available on crate feature
dtype-struct
only.impl AggList for BinaryChunked
Available on crate feature
dtype-binary
only.impl AggList for BooleanChunked
impl AggList for ListChunked
impl AggList for Utf8Chunked
impl<T> AggList for ChunkedArray<T>where
T: PolarsNumericType,
ChunkedArray<T>: IntoSeries,
impl<T: PolarsObject> AggList for ObjectChunked<T>
Available on crate feature
object
only.