Hacker Read top | best | new | newcomments | leaders | about | bookmarklet login

That's the job of the language/compiler. Rust does a fine job of this.


sort by: page size:

That's true of most languages, like C++, rust, etc.

That's literally what Rust compiler errors are doing. :P

Rust/cargo has the same issue. Somewhat surprising, since there are quite a bunch of languages, old and new ones, that do this right.

That's true, though in practice - at least in C, C++, Rust, Go etc. - the compiler won't do that automatically. You need to write code to do it yourself (which very few people do for obvious reasons).

I wish this was adopted more broadly, e.g. by Rust and other newer languages.

The fact that you can even do stuff like this in Rust is amazing. It’s simultaneously: relatively clean code, very efficient and type-safe. I like it.

All of those languages have a runtime that enables this sort of thing. That's not the case in Rust. It's a bit of an unfair thing to knock it for, given the restrictions.

This is the difference between Rust and C like languages, one optimizes for the usual case and has a simple implementation and the other goes to great lengths to be correct in corner cases at the cost of a lot of complexity.

If you don't mind me asking - what goes into implementing a feature like this in Rust? Asking as a complete noob in language design/implementation.

It's very cool. Rust guarantees that at any point in time there will only be one part of the code that can modify the contents of some data, and will fail to compile if it detects a situation where this is not the case.

This I can agree with. Rust, appropriately, has special syntax for similar semantics.

Ahh, so that's how it works. I wasn't quite getting how Rust's compiler was figuring this out, but I get it now.

I think that is his point, he thinks Rust and C++ cannot do this. But is the default in C++ and well done in Rust.

Rust gets away with this because it doesn't have move constructors. Which is a pain if you want self referencing structures, but avoids quite a bit of complexity

Which is why programmers who know these features from languages like Rust hate these. Except, they don't.

Whenever I do something in a neat, elegant match-statement in Rust, going back to a language which lacks these is painful. This isn't bloat, it's keeping up with the times.


Rust feels like a very patchwork language. There's all sorts of issues (for loops, error handling, referencing/dereferencing, type inference, etc) that they've worked around by adding another very specific compiler behavior that completely falls apart in any other usage.

Like having to do `&mut **` to pass a reference to a function once you get out of the compiler's comfort zone.


Absolutely, I was trying to communicate that this is true across a ton of languages. This one isn't super specific to Rust; others may be depending on the exact feature.

You mean there is no compile time way to accomplish that? Doesn't sound very Rust-like.

You can do that in rust, there’s even a package for it. It will destroy your compile times though.

In the future we’ll have const generics that let you express it directly without that shenanigans.

next

Legal | privacy