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 1088fc0 commit c502ceeCopy full SHA for c502cee
R/as.data.table.R
@@ -130,8 +130,7 @@ as.data.table.list = function(x,
130
n = length(x)
131
eachnrow = integer(n) # vector of lengths of each column. may not be equal if silent repetition is required.
132
eachncol = integer(n)
133
- missing.check.names = missing(check.names) || is.null(check.names) # is.null for #3193
134
- if (missing.check.names) check.names = FALSE
+ missing.check.names = missing(check.names)
135
origListNames = if (missing(.named)) names(x) else NULL # as.data.table called directly, not from inside data.table() which provides .named, #3854
136
empty_atomic = FALSE
137
for (i in seq_len(n)) {
0 commit comments