Trait AggList

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

Required Methods§

Source

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

§Safety

groups should be in bounds

Implementors§

Source§

impl AggList for ArrayChunked

Available on crate feature dtype-array only.
Source§

impl AggList for BinaryChunked

Source§

impl AggList for BooleanChunked

Source§

impl AggList for ListChunked

Source§

impl AggList for StringChunked

Source§

impl<T: PolarsObject> AggList for ObjectChunked<T>

Available on crate feature object only.
Source§

impl<T: PolarsNumericType> AggList for ChunkedArray<T>