Get the number of arguments
(&self)
| 90 | |
| 91 | /// Get the number of arguments |
| 92 | pub fn argument_count(&self) -> usize { |
| 93 | self.arguments.len() |
| 94 | } |
| 95 | |
| 96 | /// Check if the function has the expected number of arguments |
| 97 | pub fn validate_argument_count(&self, expected: usize) -> FunctionResult<()> { |
no test coverage detected