Function polars_lazy::dsl::functions::map_binary
source · pub fn map_binary<F>(
a: Expr,
b: Expr,
f: F,
output_type: SpecialEq<Arc<dyn FunctionOutputField + 'static>>
) -> Exprwhere
F: 'static + Fn(Series, Series) -> Result<Series, PolarsError> + Send + Sync,
Expand description
Apply a closure on the two columns that are evaluated from Expr
a and Expr
b.