Returns the number of expanded parameters. Complexity: O(N).
Iterates over the expanded parameters. Complexity: O(N). Prefer this to avoid the O(N + N^2/2) complexity of calculating length and calling N times opIndex.
Iterates over the expanded parameters, matching them with the unexpanded ones, for semantic processing
Returns the expanded parameter at the given index, or null if out of bounds. Complexity: O(i).
The raw (unexpanded) formal parameters, possibly containing tuples.
Represents a function's formal parameters + variadics info. Length, indexing and iteration are based on a depth-first tuple expansion. https://dlang.org/spec/function.html#ParameterList