Earlier quoted context omitted.
Except the tooling, could be better. A language like Rust will benefit from a rich IDE a lot. But still the language is great.
I'd say rustdoc is pretty rough. It's very hard to navigate the rust stdlib vs, say, Go, and when you do find what you want, it's often specified in some very cryptic manner that seems to require a PL PhD. It is a really big barrier to adoption because it's very hard to find out what functionality is or is not offered. Here's an example: I want to iterate over a set. Easy, right? No. http://static.rust-lang.org/doc/m…
> I want to iterate over a set. Easy, right?
yes, it is easy, `for value in &set {}`. Not sure why you went all the way down to `Cycle`
In this case I agree that perhaps rustdoc should note that a full description should be alluded to (the full description of Cycle is on the Iterator trait's docs), but it's still IMO much better than go