(&self)
| 243 | |
| 244 | #[inline] |
| 245 | const fn should_resize(&self) -> Option<usize> { |
| 246 | if self.filled * 3 > self.indices.len() * 2 { |
| 247 | Some(self.used * 2) |
| 248 | } else { |
| 249 | None |
| 250 | } |
| 251 | } |
| 252 | |
| 253 | #[inline] |
| 254 | fn get_entry_checked(&self, idx: EntryIndex, index_index: IndexIndex) -> Option<&DictEntry<T>> { |
no test coverage detected