Comment by vlovich123

3 years ago

Rust doesn’t use multi threaded Rc unless you actually need to send it across threads.

I'm aware. Rust isn't a conventional "managed language" which is why I consciously omitted it from the above list. In an increasingly multi-threaded world, you just have to use the synchronized version of RC (aka Arc<T> in Rust).