(&self, ip: usize)
| 126 | |
| 127 | #[inline] |
| 128 | pub fn get_fast(&self, ip: usize) -> Option<FastOp> { |
| 129 | self.slots.get(ip).and_then(|s| s.fast) |
| 130 | } |
| 131 | |
| 132 | pub fn invalidate(&mut self, ip: usize) { |
| 133 | // Preserve `inst` so the instance-dunder cache survives a scalar specialisation miss at the same site. |
no test coverage detected