pub fn apply_int_u32(
lhs: &[u32],
rhs: &[u32],
op: ArithmeticOperator,
mask: Option<&Bitmask>,
) -> Result<IntegerArray<u32>, KernelError>Expand description
Performs element-wise integer ArithmeticOperator over two &[u32], SIMD-accelerated using W32 lanes if available, otherwise falls back to scalar. Returns IntegerArray<u32> with appropriate null-mask handling.