R
R copied to clipboard
Ellipsis is exposed through evaluation environment of functions
Currently, the ... is contained in the evaluation environment of functions:
> names((fn() environment())())
[1] "..."
>
vs. R's behavior:
> names((function() environment())())
character(0)