join: simplify closure for line parsing

This commit is contained in:
Konstantin Pospelov 2017-12-18 10:40:15 +03:00
parent 2a6d550f4b
commit 743a5b68ed

View file

@ -53,7 +53,7 @@ struct Line {
impl Line {
fn new(string: String) -> Line {
Line { fields: string.split_whitespace().map(|s| String::from(s)).collect() }
Line { fields: string.split_whitespace().map(String::from).collect() }
}
/// Get field at index.