blob: dbe04620efc7216edabf0fd613da1688d70252f7 [file] [log] [blame]
pub trait Iterator {
type Item;
fn next(&mut self) -> Option<Self::Item>;
}