Are out parameters idiomatic in Rust?

from blog Steve Klabnik, | ↗ original
Oct 16 2020 There is a pretty straightforward design pattern called “out parameters” that you may have heard of before. In short, the question is, does your function wear pants… err, I mean, does your function modify data like this: fn foo() -> i32 { // body elided } let...