Can array lengths be inferred in Rust?
_ can only be used in two contexts: in patterns, to match a value to ignore, and as a placeholder for a type. In array types, the length is not a type, but an expression, and _ cannot be used in expressions. What you can do, though, is append f32 to only one of the … Read more