(&self, idx: EntryIndex, index_index: IndexIndex)
| 252 | |
| 253 | #[inline] |
| 254 | fn get_entry_checked(&self, idx: EntryIndex, index_index: IndexIndex) -> Option<&DictEntry<T>> { |
| 255 | match self.entries.get(idx) { |
| 256 | Some(Some(entry)) if entry.index == index_index => Some(entry), |
| 257 | _ => None, |
| 258 | } |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | type PopInnerResult<T> = ControlFlow<Option<DictEntry<T>>>; |
no test coverage detected