pub trait SeriesUdf: Send + Sync {
    fn call_udf(&self, s: &mut [Series]) -> Result<Series, PolarsError>;
}
Expand description

A wrapper trait for any closure Fn(Vec<Series>) -> Result<Series>

Required Methods

Trait Implementations

Formats the value using the given formatter. Read more

Implementors