diff options
| author | Stuart Cook <Zalathar@users.noreply.github.com> | 2025-09-29 21:06:45 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-09-29 21:06:45 +1000 |
| commit | 08616a17457bb93eb177d9189f92345d1924294d (patch) | |
| tree | 63c971995ccb1993d59c0c8f27d310c8fee0a08a /compiler/rustc_llvm/llvm-wrapper/Linker.cpp | |
| parent | acd91e2fe1abc802a41cef4496a375bde7053394 (diff) | |
| parent | 68a7c250788833305f73f816b284aafa9e62370a (diff) | |
| download | rust-08616a17457bb93eb177d9189f92345d1924294d.tar.gz rust-08616a17457bb93eb177d9189f92345d1924294d.zip | |
Rollup merge of #147101 - yotamofek:pr/iter-eq-and-eq-by, r=jdonszelmann
Use `Iterator::eq` and (dogfood) `eq_by` in compiler and library Now that rust-lang/rust#137122 has landed, we can replace stuff that looks like: ```rust let a: &[T]; let b: &[T]; let eq = a.len() == b.len() && a.iter().zip(b).all(|(a,b)| a == b) ``` with the much simpler `a.iter().eq(b)`, without losing the perf benefit of the different-length-fast-path. Also dogfooded `Iterator::eq_by` (cc rust-lang/rust#64295 ) while I'm at it. First commit (4d1b6fad230f8a5ccceccc7562eadc4ea50059da) should be very straightforward to review, second one (049a4606cb3906787aedf508ee8eea09c2bb3b9a) is slightly more creative, but IMHO a nice cleanup.
Diffstat (limited to 'compiler/rustc_llvm/llvm-wrapper/Linker.cpp')
0 files changed, 0 insertions, 0 deletions
