(no title)
corank
|
8 months ago
The point about Rust is to avoid any extra runtime cost by statically enforcing a set of rules (borrow checking) on reference use that are sufficient to guarantee memory safety. It also has ARC but it's reserved only for cases where those rules are too restrictive.
steveklabnik|8 months ago
corank|8 months ago
I'm not familiar with Swift though so my understanding could be incorrect.