R icon indicating copy to clipboard operation
R copied to clipboard

Ellipsis is exposed through evaluation environment of functions

Open sebffischer opened this issue 1 year ago • 0 comments

Currently, the ... is contained in the evaluation environment of functions:

> names((fn() environment())())
[1] "..."
> 

vs. R's behavior:

> names((function() environment())())
character(0)

sebffischer avatar May 22 '24 06:05 sebffischer