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 653d798 commit e01e674Copy full SHA for e01e674
R/tables.R
@@ -71,7 +71,7 @@ tables = function(mb=type_size, order.col="NAME", width=80L,
71
if (recursive) " (recursively)" else "")
72
return(invisible(data.table(NULL)))
73
}
74
- info = data.table(NAME=vapply(found_items, `[[`, "name", FUN.VALUE=character(1L)),
+ info = data.table(NAME=vapply_1c(found_items, `[[`, "name"),
75
NROW=0L, NCOL=0L, MB=0.0, COLS=list(), KEY=list(), INDICES=list())
76
for (i in seq_along(found_items)) { # avoid rbindlist(lapply(DT_names)) in case of a large number of tables
77
DT = found_items[[i]]$obj
0 commit comments