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

Make "into" methods take self with type Id<Self> #9

Closed
SSheldon opened this issue Feb 13, 2015 · 1 comment
Closed

Make "into" methods take self with type Id<Self> #9

SSheldon opened this issue Feb 13, 2015 · 1 comment

Comments

@SSheldon
Copy link
Owner

Currently, functions like INSArray's into_vec cannot be methods because they must consume an Id<Self>. For example, into_vec is currently written as:

fn into_vec(array: Id<Self>) -> ...

This means it must be called as INSArray::into_vec(array). Ideally, it'd be nice to write this as:

fn into_vec(self: Id<Self>) -> ...

Then it'd be possible to just call array.into_vec().

In the May 6th meetings notes, it was mentioned this was apparently possible in a patch at the time: https://github.com/rust-lang/meeting-minutes/blob/master/weekly-meetings/2014-05-06.md#boxself, but this functionality doesn't appear to have shipped.

@SSheldon SSheldon changed the title Make into methods with self of type Id<Self> Make "into" methods take self with type Id<Self> Feb 13, 2015
@SSheldon
Copy link
Owner Author

Moved to SSheldon/rust-objc-foundation#1.

madsmtm added a commit to madsmtm/rust-objc that referenced this issue Oct 1, 2021
Implement `Encode` for unsized types as well
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

1 participant