We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
rlang::int() is really meant to be a typed builder like c(1, 2, 3) with specified output type like
rlang::int()
c(1, 2, 3)
rlang::int(1, 3, 5) == c(1L, 3L, 5L) rlang::chr("a", "b", "c") = c("a", "b", "c")
but if ...lengths() == 1, it seems reasonable to just use a literal instead.
...lengths() == 1