Returns an iterator over all function indexes present in this compilation. Each function is additionally accompanied with its module index.
(&self)
| 148 | /// |
| 149 | /// Each function is additionally accompanied with its module index. |
| 150 | fn indexes(&self) -> impl Iterator<Item = (StaticModuleIndex, DefinedFuncIndex)> + use<'_> { |
| 151 | self.translations |
| 152 | .iter() |
| 153 | .flat_map(|(i, t)| t.module.defined_func_indices().map(move |j| (i, j))) |
| 154 | } |
| 155 | |
| 156 | /// Returns an iterator of all functions with their module, symbol, and |
| 157 | /// function metadata that were produced during compilation. |
no test coverage detected