vararg<T> typedef

vararg<T> = List<T>

Allows passing a variable number of arguments for a parameter.

Implementation

typedef vararg<T> = List<T>;