Hacker News new | past | comments | ask | show | jobs | submit login

I agree that Rust has some really great concepts. The example code makes heavy use of traits for example, which are very ergonomic and provide a dynamic feel.

The context is a rewrite AKA runtime optimization. So the result is already understood. A great use-case for Rust is top-down implementation.

Also the code doesn't show any of the more painful cases. From the article:

> There are some inefficiencies visible here, and they're probably the most important spots for performance improvements. But they're still there as fixing them was too hard and/or time-consuming for me.

Resolving these "inefficiencies" is where Rust really shines. Because it _can_ resolve them and does it internally consistent on top of it. But at the same time, this is where you really _slow down_ in development and need to think about the more complex and intricate concepts such as lifetimes and borrow semantics.




Guidelines | FAQ | Lists | API | Security | Legal | Apply to YC | Contact

Search: