We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a349fc4 commit a31632bCopy full SHA for a31632b
compiler/rustc_middle/src/hir/map/mod.rs
@@ -162,7 +162,7 @@ impl<'hir> Map<'hir> {
162
self.tcx.hir_crate_items(()).items.iter().copied()
163
}
164
165
- pub fn par_items(self, f: impl Fn(ItemId) + Sync + Send) {
+ pub fn par_for_each_item(self, f: impl Fn(ItemId) + Sync + Send) {
166
par_for_each_in(&self.tcx.hir_crate_items(()).items[..], |id| f(*id));
167
168
0 commit comments