-
Notifications
You must be signed in to change notification settings - Fork 13.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
RFC: Allow copyless destructuring of tuples #2517
Comments
I would prefer a more general proposal. That is, something like this: in patterns, a reference to a variable means "copy out" and a reference preceded by
whereas
this would apply equally to let patterns. I think this hinges on |
You can already move out of tuples when you destructure them. What's actually biting you here is the wily argument modes. The reason the implicit copy is happening is that, in your lambda block, The right way to fix this is, as Niko suggested above, |
Closing this as not-a-bug. |
Skip field retagging on ZSTs, it can take forever I just tried running the `alloc`'s tests with `miri-test-libstd` with field retagging enabled. The test suite eventually hangs on a few tests which pass around ZSTs that have a lot of fields. I don't really know how to test this effectively. The test passes, but if you remove this fast-path it effectively just hangs the interpreter. And since it hangs _inside_ a step, there's no hope for doing some kind of timeout within the test.
Destructuring a tuple now warns on an implicit copy. For example, this code:
Warns with this message:
To fix it, we need to change the destructure to
let (a, b) = copy ab;
. The copy isn't needed for situations like this though. This code could be replaced with an alt-block to avoid the copy:But then that just adds more indention creep. Ideally rust would infer the usage and not require a copy, but if that's not possible, nmatsakis mentioned we may be able to create region pointers when destructuring. He suggested a syntax like
let (&a, &b) = ab;
. This syntax could then also be used in alt-blocks to keep the destructuring syntax consistent.The text was updated successfully, but these errors were encountered: