fn bitwise_op<T, F>(
left: &PrimitiveArray<T>,
right: &PrimitiveArray<T>,
op: F,
) -> Result<PrimitiveArray<T>, ArrowError>where
T: ArrowNumericType,
F: Fn(T::Native, T::Native) -> T::Native,
Expand description
The helper function for bitwise operation with two array