pub fn map_binary<F>(a: Expr, b: Expr, f: F, output_type: GetOutput) -> Exprwhere F: 'static + Fn(Series, Series) -> PolarsResult<Option<Series>> + Send + Sync,
Apply a closure on the two columns that are evaluated from Expr a and Expr b.
Expr
The closure takes two arguments, each a Series. output_type must be the output dtype of the resulting Series.
Series
output_type