|
|
|
|
|
by spacechild1
594 days ago
|
|
Rust is essentially a C++ replacement. If you can afford a garbage collector, there's no need to use Rust or C++ and worry about memory management. Some people are promoting Rust as a general purpose programming language - which it is in theory - but so did people with C++ in the 90s. > sparing few allocations Minimizing memory allocations is typically what you want when you reach for Rust or C++. |
|