Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Steboss89/12e423ab1e7ebe9f1b88e0351c52ebd8 to your computer and use it in GitHub Desktop.
Save Steboss89/12e423ab1e7ebe9f1b88e0351c52ebd8 to your computer and use it in GitHub Desktop.
read_housing_csv.rs
reader.lines().enumerate()
.map(|(numb, line)| line.expect(&format!("Impossible to read line number {}", numb)))
.map(|row| read_single_line(row))
.collect()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment