pub fn bitwise_shift_left_scalar<T>(
array: &PrimitiveArray<T>,
scalar: <T as ArrowPrimitiveType>::Native,
) -> Result<PrimitiveArray<T>, ArrowError>where
T: ArrowNumericType,
<T as ArrowPrimitiveType>::Native: WrappingShl<Output = <T as ArrowPrimitiveType>::Native>,
Expand description
Perform bitwise left << right
every value in an array with the scalar. If any value in the array is null then the
result is also null.