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

DSTify [T]/str extension traits #18291

Merged
merged 1 commit into from
Oct 28, 2014
Merged

DSTify [T]/str extension traits #18291

merged 1 commit into from
Oct 28, 2014

Conversation

japaric
Copy link
Member

@japaric japaric commented Oct 24, 2014

This PR changes the signature of several methods from foo(self, ...) to foo(&self, ...)/foo(&mut self, ...), but there is no breakage of the usage of these methods due to the autoref nature of method.call()s. This PR also removes the lifetime parameter from some traits (Trait<'a> -> Trait). These changes break any use of the extension traits for generic programming, but those traits are not meant to be used for generic programming in the first place. In the whole rust distribution there was only one misuse of a extension trait as a bound, which got corrected (the bound was unnecessary and got removed) as part of this PR.

I've kept the commits as small and self-contained as possible for reviewing sake, but I can squash them when the review is over.

See this table to get an idea of what's left to be done. I've already DSTified Show and I'm working on Hash, but bootstrapping those changes seem to require a more recent snapshot (#18259 does the trick)

r? @aturon
cc #16918

@rust-highfive
Copy link
Contributor

warning Warning warning

  • These commits modify unsafe code. Please review it carefully!

@aturon
Copy link
Member

aturon commented Oct 27, 2014

OK, I've gone through the PR and it looks great to me. Thanks for taking this on! I'll r+ after a squash.

@japaric
Copy link
Member Author

japaric commented Oct 27, 2014

Squashed. @aturon re-r?

This PR changes the signature of several methods from `foo(self, ...)` to
`foo(&self, ...)`/`foo(&mut self, ...)`, but there is no breakage of the usage
of these methods due to the autoref nature of `method.call()`s. This PR also
removes the lifetime parameter from some traits (`Trait<'a>` -> `Trait`). These
changes break any use of the extension traits for generic programming, but
those traits are not meant to be used for generic programming in the first
place. In the whole rust distribution there was only one misuse of a extension
trait as a bound, which got corrected (the bound was unnecessary and got
removed) as part of this PR.

[breaking-change]
@japaric
Copy link
Member Author

japaric commented Oct 28, 2014

@aturon Rebased. re-r?

@ftxqxd
Copy link
Contributor

ftxqxd commented Oct 28, 2014

Should BoxedSlice be DSTified by this PR as well? It’s implemented by Box<[T]> only, so it could perhaps be merged into MutableSliceAllocating as a method taking self: Box<[T]>.

Perhaps slightly off-topic, but shouldn’t MutableSlice and ImmutableSlice be merged into one trait, and similar merges done with the Ord, Clone etc. equivalents? And what’s the difference between CloneableVector and ImmutableCloneableVector? I suppose there are enough things wrong with the slice extension traits that those sorts of changes should be left to another PR, perhaps.

@japaric
Copy link
Member Author

japaric commented Oct 28, 2014

Should BoxedSlice be DSTified by this PR as well? It’s implemented by Box<[T]> only, so it could perhaps be merged into MutableSliceAllocating as a method taking self: Box<[T]>.

I think UFCS still needs more work to do this, because Box<Self>/Box<self> is not working yet. At least this didn't work as expected:

trait BoxedSlice_<T> for Sized? {
    //fn into_vec_(Box<self>) -> Vec<T>;  //~ error: expected identifier, found keyword `self`
    fn into_vec_(Box<Self>) -> Vec<T>;
}

impl<T> BoxedSlice_<T> for [T] {
    fn into_vec_(slice: Box<[T]>) -> Vec<T> {
        unimplemented!();
    }
}

fn main() {
    let v: Box<[u8]> = box [0u8, 1, 2];
    println!("{}", v.into_vec_());
    //~^ error: type `Box<[u8]>` does not implement any method in scope named `into_vec_`
}

Perhaps slightly off-topic, but shouldn’t MutableSlice and ImmutableSlice be merged into one trait, and similar merges done with the Ord, Clone etc. equivalents? And what’s the difference between CloneableVector and ImmutableCloneableVector? I suppose there are enough things wrong with the slice extension traits that those sorts of changes should be left to another PR, perhaps.

I think the idea is to reduce the number of extension traits as much as possible (also see #16862), but I wasn't 100% sure so I didn't try that in this PR.

@arielb1 arielb1 mentioned this pull request Oct 28, 2014
@aturon
Copy link
Member

aturon commented Oct 28, 2014

@P1start

I plan to make a PR merging various extension traits and generally cleaning up the prelude traits after this PR lands. But it's fine to do the DST-ification first.

@ftxqxd
Copy link
Contributor

ftxqxd commented Oct 28, 2014

(@japaric It does work if you write self: Box<Self> in the trait declaration and self: Box<[T]> in the implementation but I think what you wrote should work once UFCS is fully implemented. But it does make sense to leave that change for another PR.)

bors added a commit that referenced this pull request Oct 28, 2014
This PR changes the signature of several methods from `foo(self, ...)` to `foo(&self, ...)`/`foo(&mut self, ...)`, but there is no breakage of the usage of these methods due to the autoref nature of `method.call()`s. This PR also removes the lifetime parameter from some traits (`Trait<'a>` -> `Trait`). These changes break any use of the extension traits for generic programming, but those traits are not meant to be used for generic programming in the first place. In the whole rust distribution there was only one misuse of a extension trait as a bound, which got corrected (the bound was unnecessary and got removed) as part of this PR.

I've kept the commits as small and self-contained as possible for reviewing sake, but I can squash them when the review is over.

See this [table] to get an idea of what's left to be done. I've already DSTified [`Show`][show] and I'm working on `Hash`, but bootstrapping those changes seem to require a more recent snapshot (#18259 does the trick)

r? @aturon 
cc #16918 

[show]: https://github.com/japaric/rust/commits/show
[table]: https://docs.google.com/spreadsheets/d/1MZ_iSNuzsoqeS-mtLXnj9m0hBYaH5jI8k9G_Ud8FT5g/edit?usp=sharing
@bors bors closed this Oct 28, 2014
@bors bors merged commit 94ddb51 into rust-lang:master Oct 28, 2014
@japaric japaric deleted the dstify branch October 30, 2014 03:12
lnicola pushed a commit to lnicola/rust that referenced this pull request Oct 17, 2024
feat: respect references.exclude_tests in call-hierarchy

close rust-lang#18212

### Changes

1. feat: respect `references.exclude_tests` in call-hierarchy
2. Modified the description of `references.exclude_tests`
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

Successfully merging this pull request may close these issues.

5 participants