Function handle_array_op
Source fn handle_array_op<'a, O, V, F, F2>(
first: &V,
args: &[ColumnarValue],
op: F,
op2: F2,
) -> Result<PrimitiveArray<O>>where
V: StringArrayType<'a>,
O: ArrowPrimitiveType,
F:
Fn(&
str, &
str) ->
Result<O::Native>,
F2:
Fn(O::Native) -> O::Native,