Skip to content

Instantly share code, notes, and snippets.

@cholcombe973
Forked from anonymous/playground.rs
Last active February 14, 2017 04:11
Show Gist options
  • Save cholcombe973/2889137827b9d0f4e948260ec82b8efb to your computer and use it in GitHub Desktop.
Save cholcombe973/2889137827b9d0f4e948260ec82b8efb to your computer and use it in GitHub Desktop.
Shared via Rust Playground
fn main() {
let a = ["1", "2", "lol"];
let mut iter = a.iter().filter_map(|s| s.parse().ok()).count();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment