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.
2 parents 5d49276 + 7d6c2a8 commit c93ef8fCopy full SHA for c93ef8f
src/raw/mod.rs
@@ -1189,7 +1189,7 @@ impl<A: Allocator + Clone> RawTableInner<A> {
1189
1190
/// Searches for an element in the table. This uses dynamic dispatch to reduce the amount of
1191
/// code generated, but it is eliminated by LLVM optimizations.
1192
- #[inline]
+ #[inline(always)]
1193
fn find_inner(&self, hash: u64, eq: &mut dyn FnMut(usize) -> bool) -> Option<usize> {
1194
let h2_hash = h2(hash);
1195
let mut probe_seq = self.probe_seq(hash);
0 commit comments