variadically
Variadic describes a function, operation, or construct that accepts a variable number of arguments. The adverb variadically denotes performing such an action. The term is used in mathematics, statistics, and computer science and stems from Latin varius, meaning "varied," combined with the -adic suffix. Variadic behavior contrasts with fixed-arity functions, which require a predetermined number of inputs.
In mathematics, variadic notation is used for sequences like sum(a1, a2, ..., an) or product(a1, a2, ..., an),
Considerations for variadic constructs include type checking, argument processing, and performance. Some languages wrap variadic inputs