R 3.5.1 Feather Spray가 공개되었다.
📣 "R 3.5.1 Feather Spray"
— Mara Averick (@dataandme) July 2, 2018
👏 @_R_Foundationhttps://t.co/vvrFvpS45n #rstats pic.twitter.com/awH6dUPcJg
Heads up: R 3.5.0+ has shiny new utils for grabbing dots inside a function: #RStats pic.twitter.com/egyBRWnIrM
— Advik Shreekumar (@AdvikSh) July 2, 2018
f1 <- function(...){ print(..1) }
f5 <- function(...){ print(..5) }
f1("a")
f5('a', 'b', 'c', 'd', 'e', 'f')
g <- function(x, ...){ print(...elt(x)) }
g(1, "a", "b")
g(2, "a", "b")
h <- function(...) { print(...length()) }
h()
h('a')
h('a', 'b')