Returns the number of arguments. Star (`*`) is None.
(&self)
| 1442 | |
| 1443 | /// Returns the number of arguments. Star (`*`) is None. |
| 1444 | pub fn len(&self) -> Option<usize> { |
| 1445 | match self { |
| 1446 | FunctionArgs::Star => None, |
| 1447 | FunctionArgs::Args { args, .. } => Some(args.len()), |
| 1448 | } |
| 1449 | } |
| 1450 | |
| 1451 | /// Prints associated keywords before each argument |
| 1452 | fn intersperse_function_argument_keywords<W: fmt::Write>( |
no outgoing calls