Iterate over the `VCodeConstant` keys and the data (as a byte slice) inserted in this structure.
(&self)
| 1893 | /// Iterate over the `VCodeConstant` keys and the data (as a byte slice) inserted in this |
| 1894 | /// structure. |
| 1895 | pub fn iter(&self) -> impl Iterator<Item = (VCodeConstant, &VCodeConstantData)> { |
| 1896 | self.constants.iter() |
| 1897 | } |
| 1898 | |
| 1899 | /// Returns the data associated with the specified constant. |
| 1900 | pub fn get(&self, c: VCodeConstant) -> &VCodeConstantData { |
no outgoing calls
no test coverage detected