-
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
Unsized types #13375
Unsized types #13375
Conversation
I realise I need to prevent unsized fields in enum variants as well as structs. I will do that as a follow-up. |
Is there a feature-guard part of this PR for this change? It seems like we should at the very least mark it by a feature guard until DST has gone through the RFC process. |
I asked around on irc when I started and the consensus was we shouldn't bother with a feature guard for DST since it was widely accepted. Given that it had discussion before the RFC process existed, I'd be happy to make an exception for it. |
I need more convincing that |
Me too! I still prefer |
@nick29581 re: feature guard, my motivation is that I don't want newcomers to accidentally start using the syntax without realizing what they are getting themselves into. (Plus, the fact that we are potentially still debating the keyword to use is all the more reason to put it under a feature guard.) @brson I am not sure what more I can say beyond my blog post. To my eye, the program text: fn foo<unsized T>(x: &T) { ... } simply reads wrong, because it to my eye says " The keyword is meant to be a marker that we are broadening our domain to a strict superset of the defaults you get without the marker, not switching it between two incomparable/disjoint domains. But to me (and I think also for @nikomatsakis), This insight, that we are going from the domain |
I hope we can decide on a keyword before landing this, but if we don't lets definitely feature gate it. Otherwise, the keyword doesn't really do anything, so I don't think anyone will use it, coming across it by chance seems unlikely. My concern is with what to actually feature gate - the unsized/type keyword is pretty easy, but further DST features are going to be pretty tricky to cover. On the keyword, I prefer |
@nick29581 I quibble with some of the details you state. e.g., until we have higher-kinded types, And when we do add higher kinded types, you still wouldn't use // `type(type)` is the kind * -> *
fn foo<type(type) F: Functor, X, Y>(x: F(X), f: X -> Y) -> F(Y) { x.map(f) } But still, I do see your point: There may be other places where we discover that we want/need a generalization marker. So we should either
I've been hoping for (3.), but I guess I should give more consideration to it possibly happening. E.g. to give a concrete example, lets say we discover that we've been thinking of all types as belonging to values made up of Bits, but in the future with quantum computing, we discover the need to generalize to Qubits in some types/values. And for some reason, this choice between bits and qubits leaks into the kinds of the types themselves, and cannot be encapsulated (much like our distinction between static-sized and dynamically-sized). But, due to the strange nature of Qubits and what the common use cases are when programming, we still want the default, when you use So, an idea: I have explained my proposal by saying that
I'm just thinking out loud at this point. (I think niko and I had already dismissed attempting to make the @nikomatsakis any thoughts on the above crazy idea? |
@pnkfelix to return-quibble, I meant types with zero type parameters vs types with one or more type parameters as opposed to types vs type constructors. But yeah, it was a silly example to illustrate that type could mean other things. You spelling out of the non-future proof-ness of |
maybe the marker should be
|
Or make use of question mark: |
After a bit of bikeshedding on irc, I think we came up with an idea which we could both stomach, which is to allow generlaisation bounds before a type variable marked with ?. So the unsized syntax would be |
This PR is superseded by #13398. The discussion here is not addressed in that PR and is still relevant. |
Now with proper checking of enums and allows unsized fields as the last field in a struct or variant. This PR only checks passing of unsized types and distinguishing them from sized ones. To be safe we also need to control storage. Closes issues #12969 and #13121, supersedes #13375 (all the discussion there is valid here too).
Fixes rust-lang#13375 I've added the lint next to the other attribute-related ones. Not sure if this is the correct place, since while we are looking after the `packed`-attribute (there is nothing we can do about types defined elsewhere), we are more concerned about the type's representation set by the attribute (instead of "duplicate attributes" and such). The lint simply looks at the attributes themselves without concern for the item-kind, since items where `repr` is not allowed end up in a compile-error anyway. I'm somewhat concerned about the level of noise this lint would cause if/when it goes into stable, although it does _not_ come up in `lintcheck`. ``` changelog: [`repr_packed_without_abi`]: Initial implementation ```
Support unsized types using the
type
keyword. Use the usual built-in bounds checking rules and forbid in fields. Further checking required before it is safe for DST. Closes issue #12969.