|
|
|
|
|
by the__alchemist
547 days ago
|
|
After pondering, my single favorite capability of rust is this: fn modify(val: &mut u8) {
// ...
}
No other language appears to have this seemingly trivial capability; their canonical alternatives are all, IMO, clumsier. In light of the article, is this due to Rust's memory model, or an unrelated language insight? |
|