ArgumentList
A list of argument value assignments for a set of parameters. Guarantees that an argument is provided for all parameters without default values.
Types
A builder to assemble an ArgumentList for a set of parameters. Parameters which are not set will use their default values if they have one. Successfully building an ArgumentList guarantees that values are provided for all parameters without default values.
Properties
Functions
Get the argument for parameter, or null if one was not set. To distinguish between explicitly passing null and using the default value, use isDefaulted.
Get the argument for the parameter at index, or null if one was not set. To distinguish between explicitly passing null and using the default value, use isDefaulted.
Get the argument for the parameter with the given name, or null if one was not set. To distinguish between explicitly passing null and using the default value, use isDefaulted.
Get the argument for the kind parameter at indexInKind, or null if one was not set. To distinguish between explicitly passing null and using the default value, use isDefaulted.
Returns true if the argument for parameter is defaulted (i.e. not set, and the parameter has a default value).
Returns true if the argument for the parameter at globalIndex is defaulted (i.e. not set, and the parameter has a default value).
Returns true if the argument for the kind parameter at indexInKind is defaulted (i.e. not set, and the parameter has a default value).