pub fn int_dense_body_std<T>(
op: ArithmeticOperator,
lhs: &[T],
rhs: &[T],
out: &mut [T],
)Expand description
Scalar integer arithmetic kernel for dense arrays (no nulls). Performs element-wise operations using wrapping arithmetic to prevent overflow panics. Panics on division/remainder by zero.