|
|
|
|
|
by monocasa
2198 days ago
|
|
There's more benefits to Rust than just it's memory safety. It being a non-GCed language with ADTs is a big one, and that's been nice for the couple JITs I've written in Rust. And the partial memory safety over the metadata around the actual JITed code is a big win as well. Yes, Rust doesn't get you there 100%, but IMO it gets you closer than C or C++. |
|
C++ has both, too, so in this case Rust's only advantage would be memory safety.