Files
rust/src/libstd
Dylan DPC 67d735c4bf Rollup merge of #69736 - matthiaskrgr:even_more_clippy, r=Dylan-DPC
even more clippy cleanups

* Don't pass &mut where immutable reference (&) is sufficient (clippy::unnecessary_mut_passed)
* Use more efficient &&str to String conversion (clippy::inefficient_to_string)
* Don't always eval arguments inside .expect(), use unwrap_or_else and closure. (clippy::expect_fun_call)
* Use righthand '&' instead of lefthand "ref". (clippy::toplevel_ref_arg)
* Use simple 'for i in x' loops instead of 'while let Some(i) = x.next()' loops on iterators. (clippy::while_let_on_iterator)
* Const items have by default a static lifetime, there's no need to annotate it. (clippy::redundant_static_lifetimes)
* Remove redundant patterns when matching ( x @ _  to  x) (clippy::redundant_pattern)
2020-03-05 22:04:10 +01:00
..
2019-11-29 18:43:27 -08:00
2019-11-29 18:43:27 -08:00
2020-02-07 21:53:22 -08:00
2020-02-11 16:57:22 -08:00
2020-02-01 22:04:18 -05:00
2020-03-03 00:08:24 +01:00
2019-11-29 18:43:27 -08:00
2019-11-25 08:59:23 +01:00
2020-01-01 09:52:18 +07:00
2020-02-14 22:40:03 +00:00
2019-02-28 04:06:15 +09:00
2019-11-29 18:43:27 -08:00
2020-02-29 02:16:04 +01:00
2019-11-29 18:43:27 -08:00
2020-02-29 08:40:09 -05:00