You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SEXPRCHK; // a 2 item list holding vars (result of checkVars) and not_NA_indices. PROTECTed up in fmelt so that preprocess() doesn't need to PROTECT. To pass rchk, #2865
286
-
SEXPidcols,// convenience pointers into RCHK[0][0], RCHK[0][1] and RCHK[1] respectively
287
-
variable_table,// NULL or data for variable column(s).
288
-
valuecols,// list with one element per output/value column, each element is an integer vector.
289
-
not_NA_indices;
290
-
int*isfactor,
291
-
*leach,// length of each element of the valuecols(measure.vars) list.
292
-
*isidentical; // are all inputs for this value column the same type?
293
-
intlids,// number of id columns.
294
-
lvars,// number of variable columns.
295
-
lvalues,// number of value columns.
296
-
lmax,// max length of valuecols elements / number of times to repeat ids.
297
-
totlen,// of output/long DT result of melt operation.
298
-
nrow; // of input/wide DT to be melted.
285
+
SEXPRCHK; // a 2 item list holding vars (result of checkVars) and not_NA_indices. PROTECTed up in fmelt so that preprocess() doesn't need to PROTECT. To pass rchk, #2865
286
+
SEXPidcols; // convenience pointers into RCHK[0][0], RCHK[0][1] and RCHK[1] respectively
287
+
SEXPvariable_table;// NULL or data for variable column(s).
288
+
SEXPvaluecols; // list with one element per output/value column, each element is an integer vector.
289
+
SEXPnot_NA_indices;
290
+
int*isfactor;
291
+
int*leach; // length of each element of the valuecols(measure.vars) list.
292
+
int*isidentical;// are all inputs for this value column the same type?
293
+
intlids; // number of id columns.
294
+
intlvars; // number of variable columns.
295
+
intlvalues; // number of value columns.
296
+
intlmax; // max length of valuecols elements / number of times to repeat ids.
297
+
inttotlen; // of output/long DT result of melt operation.
0 commit comments