fn broadcast_add[T; const N: u32](a: &NDArray[T; N], b: &NDArray[T; N]) -> NDArray[T; N]
Element-wise addition with broadcasting. The smaller array is virtually expanded to match the larger shape. Broadcast rules (same as NumPy but explicit): 1. Dimensions are compared right-to-left 2. Dimensions must match OR one must be 1 3. The output shape is the element-wise maximum
Source: broadcasting.joule:28