Skip to content

Instantly share code, notes, and snippets.

@krdln
Last active August 29, 2015 14:01
Show Gist options
  • Save krdln/52db0de9b427b2161546 to your computer and use it in GitHub Desktop.
Save krdln/52db0de9b427b2161546 to your computer and use it in GitHub Desktop.
trait Iterator<T> {
//...
fn len(self) { // not &mut self !
match self.size_hint() {
(bot, Some(up)) if bot == up => bot,
_ => self.fold(0, |cnt, _x| cnt + 1)
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment