pub struct ListNameSpace(pub Expr);
Expand description

Specialized expressions for Series of DataType::List.

Tuple Fields

0: Expr

Implementations

Get lengths of the arrays in the List type.

Compute the maximum of the items in every sublist.

Compute the minimum of the items in every sublist.

Compute the sum the items in every sublist.

Compute the mean of every sublist and return a Series of dtype Float64

Sort every sublist.

Reverse every sublist

Keep only the unique values in every sublist.

Get items in every sublist by index.

Get first item of every sublist.

Get last item of every sublist.

Join all string items in a sublist and place a separator between them.

Error

This errors if inner type of list != DataType::Utf8.

Return the index of the minimal value of every sublist

Return the index of the maximum value of every sublist

Available on crate feature diff only.

Diff every sublist.

Shift every sublist.

Slice every sublist.

Get the head of every sublist

Get the tail of every sublist

Available on crate feature list_to_struct only.

Convert this List to a Series of type Struct. The width will be determined according to ListToStructWidthStrategy and the names of the fields determined by the given name_generator.

Available on crate feature is_in only.

Check if the list array contain an element

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more
Immutably borrows from an owned value. Read more
Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The alignment of pointer.
The type for initializers.
Initializes a with the given initializer. Read more
Dereferences the given pointer. Read more
Mutably dereferences the given pointer. Read more
Drops the object pointed to by the given pointer. Read more
The type returned in the event of a conversion error.
Performs the conversion.
The type returned in the event of a conversion error.
Performs the conversion.