Whether a constant is present in this view.
(&self, addr: &Address)
| 52 | |
| 53 | /// Whether a constant is present in this view. |
| 54 | pub fn contains_const(&self, addr: &Address) -> bool { |
| 55 | self.inner.consts.contains_key(addr) |
| 56 | } |
| 57 | |
| 58 | /// Number of constants. |
| 59 | pub fn const_count(&self) -> usize { |
nothing calls this directly
no test coverage detected