Yu-Yuan Chen
Results
1
issues of
Yu-Yuan Chen
I'm trying to do the following: ``` let lines = if something_is_true { RevLines::new(BufReader::new(file)).unwrap() } else { BufReader::new(file).lines() }; ``` However, this is not a valid Rust syntax since the...