-
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
a boxed iterator can't use methods in the IteratorExt trait #21361
Comments
I think a possible solution would be |
The idea works with the old #![no_implicit_prelude]
use std::boxed::Box;
use std::marker::Sized;
use std::option::Option;
trait Iterator<T> {
fn next(&mut self) -> Option<T>;
}
impl<'a, T> Iterator<T> for &'a mut (Iterator<T> + 'a) {
fn next(&mut self) -> Option<T> {
loop {}
}
}
trait IteratorExt<T>: Iterator<T> + Sized {
fn last(self) -> Option<T> {
loop {}
}
}
impl<I, T> IteratorExt<T> for I where I: Iterator<T> {}
fn test(mut it: Box<Iterator<u8> + 'static>) {
it.last(); // <-- it works
}
fn main() {} But I'm not quite sure how to impl<'a, T> Iterator for &'a mut (Iterator<Item=T> + 'a) {
//~^ error: the type parameter `T` is not constrained by the impl trait, self type, or predicates
type Item = T;
} |
I think the last |
closes rust-lang#20953 closes rust-lang#21361 --- In the future, we will likely derive these `impl`s via syntax extensions or using compiler magic (see rust-lang#20617). For the time being we can use these manual `impl`s. r? @aturon cc @BurntSushi @Kroisse
Example
This code will be failed to compile because
boxed
holds a trait object that is unsized, andIteratorExt
requires theSized
kind soIteratorExt
can only be implemented for sized types. LikeIteratorExt::map()
, many methods inIteratorExt
consumeself
, so requiring a sized type is necessary.Adding
impl Iterator for Box<Iterator>
(likeReader for Box<Reader>
) might solve this problem, but I'm worrying about the confliction with autoderef.The text was updated successfully, but these errors were encountered: