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.
1 parent 5383d55 commit 1694c99Copy full SHA for 1694c99
inst/tests/tests.Rraw
@@ -21381,8 +21381,11 @@ if (!inherits(tryCatch(sqrt_elt_sym(1), error=identity), "error")) {
21381
test(2329.07, DT[, lapply(.SD, sqrt_elt_sym)], data.table(a=1.0))
21382
test(2329.08, DT[, lapply(.SD, function(...) sqrt(...elt(1L)))], data.table(a=1.0))
21383
}
21384
-# edge case of weird, though technically valid, names
21385
-`.123` = ...123 = 'a'
+# edge case of weird, though technically valid, names:
+# _not_ '..N' style and distinct from '...'
21386
+`123` = `.123` = ..123 = ...123 = 'a'
21387
DT = data.table(a = 4L)
-test(2329.09, DT[, ...123], DT) # _not_ '..N' style and distinct from '...'
21388
-test(2329.10, DT[, .....123], DT)
+test(2329.09, DT[, ..123], DT)
21389
+test(2329.10, DT[, ...123], DT)
21390
+test(2329.11, DT[, ....123], DT)
21391
+test(2329.12, DT[, .....123], DT)
0 commit comments