(&self, pc: u32)
| 27 | } |
| 28 | |
| 29 | fn lookup(&self, pc: u32) -> Option<StackMap<'a>> { |
| 30 | let pc_index = self |
| 31 | .pcs |
| 32 | .binary_search_by_key(&pc, |v| v.get(LittleEndian)) |
| 33 | .ok()?; |
| 34 | self.get(pc_index) |
| 35 | } |
| 36 | |
| 37 | fn into_iter(self) -> impl Iterator<Item = (u32, StackMap<'a>)> + 'a { |
| 38 | self.pcs |
nothing calls this directly
no test coverage detected