pub trait SeriesBinaryUdf: Send + Sync {
    fn call_udf(&self, a: Series, b: Series) -> Result<Series, PolarsError>;
}
Expand description

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

Required Methods

Trait Implementations

Formats the value using the given formatter. Read more

Implementors