pub fn float_dense_body_std<T>(
op: ArithmeticOperator,
lhs: &[T],
rhs: &[T],
out: &mut [T],
)where
T: Float,Expand description
Scalar floating-point arithmetic kernel for dense arrays (no nulls).
Division by zero produces Inf/NaN rather than panicking.
Power operations use logarithmic exponentiation: exp(b * ln(a)).