|
|
|
|
|
by rcxdude
836 days ago
|
|
Reference counting and locks often is the easy path in Rust. It may not feel like it because of the syntax overhead, but I firmly believe it should be one of the first solutions on the list, not a last resort. People get way too fixed on trying to prove to the borrow checker that something or another is OK, because they feel like they need to make things fast, but it's rare that the overhead is actually relevant. |
|
I do think that a superset of Rust that provided first-class native syntax for ARC would be much more popular.