Get information about functions in this component's `.text` section: their module index, function index, name, and offset+length.
(&self)
| 576 | /// Get information about functions in this component's `.text` section: |
| 577 | /// their module index, function index, name, and offset+length. |
| 578 | pub fn functions(&self) -> impl Iterator<Item = crate::ModuleFunction> + '_ { |
| 579 | self.inner |
| 580 | .static_modules |
| 581 | .values() |
| 582 | .flat_map(|m| m.functions()) |
| 583 | } |
| 584 | |
| 585 | /// Get the address map for this component's `.text` section. |
| 586 | /// |