We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Iterator<Item=T>
Iterator<Item=Option<T>>
Example from libcore
#![crate_type = "lib"] #![feature(associated_types)] #![no_implicit_prelude] use std::option::Option::{None, Some, mod}; use std::vec::Vec; trait Iterator { type Item; fn next(&mut self) -> Option<Self::Item>; } fn is_iterator_of<A, I: Iterator<Item=A>>(_: &I) {} struct Adapter<I> { iter: I, found_none: bool, } impl<T, I> Iterator for Adapter<I> where I: Iterator<Item=Option<T>> { type Item = T; fn next(&mut self) -> Option<T> { loop {} } } fn test_adapter<T, I: Iterator<Item=Option<T>>>(it: I) { is_iterator_of::<Option<T>, _>(&it); // Sanity check let adapter = Adapter { iter: it, found_none: false }; is_iterator_of::<T, _>(&adapter); // OK is_iterator_of::<Option<T>, _>(&adapter); // <-- This shouldn't be accepted }
84f5ad8
cc @nikomatsakis
The text was updated successfully, but these errors were encountered:
9675488
nikomatsakis
No branches or pull requests
STR
Example from libcore
Version
84f5ad8
cc @nikomatsakis
The text was updated successfully, but these errors were encountered: