Skip to content
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

Add Invariant<T> marker type #31218

Closed
bluss opened this issue Jan 26, 2016 · 5 comments
Closed

Add Invariant<T> marker type #31218

bluss opened this issue Jan 26, 2016 · 5 comments

Comments

@bluss
Copy link
Member

bluss commented Jan 26, 2016

From a discussion about different ways to write an Invariant type parameter marker; since we need to express it via PhantomData.

candidates were basically (although this was only used for &'a () cases)

  1. PhantomData<*mut T>
  2. PhantomData<Cell<T>>
  3. PhantomData<fn(T) -> T>

Which all have different drawbacks and incidental other implications.

The source of the confusion was (3) case not passing my simple test for invariance.

Because of the drawbacks, it seems it would be useful to have a real invariance marker in rust's libstd.

(1) and (2) make the type !Sync. (2) has owns-T implications (3) has bug #31200. All of (1), (2), (3) don't respond like Invarant<T> should to custom new OIBITS.

cc @reem if you are interested.

@Gankra
Copy link
Contributor

Gankra commented Jan 26, 2016

This seems like an RFCs thing.

I'm kinda ambivalent on this. We used to have these and that was confusing... but sometimes you do know exactly the semantic you want and there's no "natural" phantom for it.

@bluss
Copy link
Member Author

bluss commented Jan 26, 2016

It's more confusing to keep track of all incidental collaterals of the phantomdata formulations.

@nikomatsakis
Copy link
Contributor

I'm sort of ambivalent as well. On the one hand, PhantomData is great when you DO have something that is, well, data that the compiler cannot see. On the other hand, sometimes you just need to track some types along, and in that case, the behavior of PhantomData can be kind of frustrating. I've wound up adding PhantomType to some projects of mine -- it's similar to the Invariant proposed here except that it adds covariance, but it doesn't make a big difference in practice. The main difference is that it is not supposed to represent "hidden data" but rather just "a type that I need to remember", which means it can e.g. be safely considered Send and so forth.

Anyway I agree this deserves an RFC.

@bluss
Copy link
Member Author

bluss commented Jan 26, 2016

RFC makes sense.

@bluss bluss closed this as completed Jan 26, 2016
@pnkfelix
Copy link
Member

Note also this important comment #31200 (comment) in response to the claim that "(3) has bug #31200"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants