datatypes::compute::kernels::bitwise

Function bitwise_shift_right

pub fn bitwise_shift_right<T>(
    left: &PrimitiveArray<T>,
    right: &PrimitiveArray<T>,
) -> Result<PrimitiveArray<T>, ArrowError>
where T: ArrowNumericType, <T as ArrowPrimitiveType>::Native: WrappingShr<Output = <T as ArrowPrimitiveType>::Native>,
Expand description

Perform bitwise left >> right operation on two arrays. If either left or right value is null then the result is also null.