pub trait AggList {
// Required method
unsafe fn agg_list(&self, _groups: &GroupsProxy) -> Series;
}
Available on crate feature
algorithm_group_by
only.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 ChunkedArray<StructType>
Available on crate feature
dtype-struct
only.impl<T> AggList for ChunkedArray<ObjectType<T>>where
T: PolarsObject,
Available on crate feature
object
only.