pub trait AggList {
// Required method
unsafe fn agg_list(&self, _groups: &GroupsType) -> Series;
}
Available on crate feature
algorithm_group_by
only.Required Methods§
Sourceunsafe fn agg_list(&self, _groups: &GroupsType) -> Series
unsafe fn agg_list(&self, _groups: &GroupsType) -> Series
§Safety
groups should be in bounds
Implementors§
impl AggList for ArrayChunked
Available on crate feature
dtype-array
only.impl AggList for BinaryChunked
impl AggList for BooleanChunked
impl AggList for ListChunked
impl AggList for StringChunked
impl<T: PolarsObject> AggList for ObjectChunked<T>
Available on crate feature
object
only.