rust/compiler
Tyler Mandry d95948c6d3
Rollup merge of #79732 - matthiaskrgr:cl12ppy, r=Dylan-DPC
minor stylistic clippy cleanups

simplify if let Some(_) = x  to  if x.is_some()  (clippy::redundant_pattern_matching)
don't create owned values for comparison (clippy::cmp_owned)
use .contains() or .any() instead of find(x).is_some() (clippy::search_is_some)
don't wrap code block in Ok()  (clipppy::unit_arg)
2020-12-09 13:38:12 -08:00
..
2020-12-03 09:50:10 -08:00
2020-12-06 20:30:07 +00:00
2020-12-03 17:08:19 -05:00
2020-12-03 17:08:19 -05:00
2020-12-03 09:50:10 -08:00