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
whitespace, and unrelated to this PR localized more i,j in loops (to protect from i,j being used accidentally outside those loops, not really for speed reasons)
SEXPRCHK; // a 2 item list holding vars (result of checkVars) and naidx. PROTECTed up in fmelt so that preprocess() doesn't need to PROTECT. To pass rchk, #2865
274
-
SEXPidcols,
275
-
valuecols, // list with one element per output/value column, each
276
-
// element is an integer vector.
277
-
naidx; // convenience pointers into RCHK[0][0], RCHK[0][1] and RCHK[1] respectively
273
+
SEXPRCHK; // a 2 item list holding vars (result of checkVars) and naidx. PROTECTed up in fmelt so that preprocess() doesn't need to PROTECT. To pass rchk, #2865
274
+
SEXPidcols, // convenience pointers into RCHK[0][0], RCHK[0][1] and RCHK[1] respectively
275
+
valuecols, // list with one element per output/value column, each element is an integer vector.
276
+
naidx;
278
277
int*isfactor,
279
-
*leach, // length of each element of the valuecols(measure.vars) list.
278
+
*leach, // length of each element of the valuecols(measure.vars) list.
280
279
*isidentical; // are all inputs for this value column the same type?
281
-
intlids, // number of id columns.
282
-
lvalues, // number of value columns.
283
-
lmax, //max length of valuecols elements / number of times to repeat ids.
284
-
totlen, // of output/long DT result of melt operation.
285
-
nrow; // of input/wide DT to be melted.
280
+
intlids, // number of id columns.
281
+
lvalues, // number of value columns.
282
+
lmax, // max length of valuecols elements / number of times to repeat ids.
283
+
totlen, // of output/long DT result of melt operation.
0 commit comments