-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Owned references to contents in an earlier stack frame (&own
, &move
, etc)
#998
Comments
👍 Doing this in a safe way w/o heap allocation would be neat. |
Are there any unresolved questions? |
It sounds like a comonad actually, so state machines, etc. There is an RFC proposing I'd imagine this could be done by delegating several There isn't afaik any reason to touch the usual comonad definition here, but comonads do run close to object oriented programming http://www.haskellforall.com/2013/02/you-could-have-invented-comonads.html It's not too odd that an RFC for adding a form of inheritance would help add the most well understood application of comonads too. |
Alternatively, is there a clean way to make references more extensible in general? It seems to me that an alternative approach that allowed substitution of references for anything implementing Deref would be really useful. For example, in public library structs with internal references, it seems like references are too limiting: really, the user should be able to provide a reference, Rc, Arc, Box, or whatever they please. The obvious answer is to make every such struct generic on Deref, but that adds a lot of unnecessary boilerplate ( |
@cramertj I think what you are asking for are higher-kinded types (HKT)? so that one could have a library parameterized over a type constructor from type to type (and I guess also in this case the type resulting from the construction would be expected to implement Deref in an appropriate manner); then you would instantiate such a library with the desired reference type constructor: Rc, Arc, Cow, .,.. If that is indeed what you are describing, then yes, HKT is something the community has been discussing for a long while. (However, I believe it to be separate from the construct described on this ticket, at least in the sense that whether or not we add HKT is largely orthogonal to whether we add a |
Yes, I'm essentially proposing a specific use case of HKTs. I wasn't sure whether or not this RFC was designed with HKTs in mind-- perhaps I don't properly understand the concept of |
This honestly might be worth revisiting for types that can't be pinned. Having a way of transferring ownership without moving would be very handy. |
One other interesting thing that I thought of is: what if there were an With Honestly, I don't know what the use of immutable owned references would be, unless we were to add an immutable version of the But maybe it'd be a cool concept to consider, because it'd help explicitly annotate whether mutation has to happen during the lifetime during the drop. Like, ownership is merely a property of the reference, rather than it being a level of reference above usual mutability. |
I don't see the point of having the immutable version because it's not |
I mean, that's fair, although I would argue against "all useful types" because not all types contain heap allocations or other resources to tear down. Another interpretation is that taking an immutable reference is similar to calling |
True, I should have said most useful types.
Or you could just |
A common request is to have a way to pass a reference that actually owns its referent. The idea originated long ago in an attempt to find a suitable type for
Drop
, but it's not a perfect fit there (you really want to not own the struct being dropped, just its fields). It has since resurfaced as a means to pass ownership of unsized types (but see #990 as well) and various other use cases.Postponed RFCs
&own T
#965&move
#1617The text was updated successfully, but these errors were encountered: