Returns the number of functions defined by this module itself: all functions minus imported functions.
(&self)
| 560 | /// Returns the number of functions defined by this module itself: all |
| 561 | /// functions minus imported functions. |
| 562 | pub fn num_defined_funcs(&self) -> usize { |
| 563 | self.functions.len() - self.num_imported_funcs |
| 564 | } |
| 565 | |
| 566 | /// Returns the number of tables defined by this module itself: all tables |
| 567 | /// minus imported tables. |