rust/src/libstd/io
Matthias Krüger 08f2904dfa more clippy fixes
use is_empty() instead of len comparison (clippy::len_zero)
use if let instead of while let loop that never loops (clippy::never_loop)
remove redundant returns (clippy::needless_return)
remove redundant closures (clippy::redundant_closure)
use if let instead of match and wildcard pattern (clippy::single_match)
don't repeat field names redundantly (clippy::redundant_field_names)
2020-03-31 15:20:05 +02:00
..
buffered.rs Fix issue number of capacity method 2020-02-05 15:34:33 +09:00
cursor.rs Don't redundantly repeat field names (clippy::redundant_field_names) 2020-03-06 19:42:18 +01:00
error.rs Deprecate Error::description for real 2019-12-24 22:39:49 -08:00
impls.rs Format libstd with rustfmt 2019-11-29 18:43:27 -08:00
lazy.rs Format the world 2019-12-22 17:42:47 -05:00
mod.rs spaces between braces really ruin readability 2020-03-24 15:39:29 +01:00
prelude.rs Format libstd with rustfmt 2019-11-29 18:43:27 -08:00
stdio.rs more clippy fixes 2020-03-31 15:20:05 +02:00
util.rs Format libstd with rustfmt 2019-11-29 18:43:27 -08:00