Summarizes either named (foo(a = 3, b = 2)), unnamed (foo(3, 2)), or empty (foo(,)) arguments within a function. See the FunctionArgument helper functions to check for the specific types.
foo(a = 3, b = 2)
foo(3, 2)
foo(,)
FunctionArgument.isNamed
FunctionArgument.isPositional
FunctionArgument.isEmpty
Summarizes either named (
foo(a = 3, b = 2)), unnamed (foo(3, 2)), or empty (foo(,)) arguments within a function. See the FunctionArgument helper functions to check for the specific types.