* @brief Returns the number of parameters. * * Does not matter if function takes variable number of parameters or not. */
| 82 | * Does not matter if function takes variable number of parameters or not. |
| 83 | */ |
| 84 | Function::Parameters::size_type Function::getParameterCount() const |
| 85 | { |
| 86 | return parameters.size(); |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * @brief Returns the n-th parameter. |