A variadic parameter mixing bare values and arrays of values in a single argument list.
Widens a rest parameter so a combinator accepts both spread values (f(a, b, c)) and a pre-built array
(f([a, b, c])), sparing callers a spread when passing the result of an array-returning helper. Combinators
flatten the arguments one level before use.
A variadic parameter mixing bare values and arrays of values in a single argument list.
Widens a rest parameter so a combinator accepts both spread values (
f(a, b, c)) and a pre-built array (f([a, b, c])), sparing callers a spread when passing the result of an array-returning helper. Combinators flatten the arguments one level before use.