|
|
|
|
|
by pornel
712 days ago
|
|
For Rust users there's a significant difference: * it's a Cargo package, which is trivial to add to a project. Pure-Rust projects are easier to build cross-platform. * It exports a safe Rust interface. It has configurable levels of thread safety, which are protected from misuse at compile time. The point isn't that C++ can match performance, but that you don't have to use C++, and still get the performance, plus other niceties. This is "is there anything specific to C++ that assembly can't match in performance?" one step removed. |
|