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 2dc9bb2 commit 57b9ebeCopy full SHA for 57b9ebe
src/raw/mod.rs
@@ -2082,6 +2082,7 @@ struct RawIterHashInner<'a> {
2082
}
2083
2084
impl<'a, T> RawIterHash<'a, T> {
2085
+ #[cfg_attr(feature = "inline-more", inline)]
2086
fn new(table: &'a RawTable<T>, hash: u64) -> Self {
2087
RawIterHash {
2088
inner: RawIterHashInner::new(&table.table, hash),
@@ -2115,6 +2116,7 @@ impl<'a> RawIterHashInner<'a> {
2115
2116
impl<'a, T> Iterator for RawIterHash<'a, T> {
2117
type Item = Bucket<T>;
2118
2119
2120
fn next(&mut self) -> Option<Bucket<T>> {
2121
unsafe {
2122
match self.inner.next() {
0 commit comments