▲ | physicsguy 7 months ago | ||||||||||||||||||||||||||||||||||
C++ is still important in domains where performance is really critical. I also think there's a place where it can easily be supplanted, but currently cross platform native software has Qt and bindings for it in other languages are mixed. In performance critical things, Rust still doesn't feel like the final answer since you end up cloning a lot and refactors are very painful. Go obviously has it's issues since SIMD support is non-existent and there is limited control over garbage collection, though it works well for web APIs. | |||||||||||||||||||||||||||||||||||
▲ | Conscat 7 months ago | parent [-] | ||||||||||||||||||||||||||||||||||
You can write SIMD in Go asm, and wrap it up in a normal Go API. It's not great though. | |||||||||||||||||||||||||||||||||||
|