This type represents python *args feature, supporting passing arbitrary number of arguments to a function.

Example:

function f(args:VarArgs<Int>) {}
f([1, 2, 3]);

Static methods

@:tostaticinlinetoArray(this:Dynamic):Array<T>