|
|
|
|
|
by klodolph
1748 days ago
|
|
> Mostly off-topic but FWIW "mutable reference into an array" is typically very easy in Rust you just accept a &mut [T]. I had specifically worded it as "a couple mutable references into an array". How do I take a small number of references into an array, say two or three? |
|
Yeah you gotta write it out per number of times. Luckily this rarely comes up in this specific form.