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 f477fac commit 4bda6daCopy full SHA for 4bda6da
src/data.table.h
@@ -16,13 +16,6 @@
16
// #include <signal.h> // the debugging machinery + breakpoint aidee
17
// raise(SIGINT);
18
19
-// data.table depends on R>=3.0.0 when R_xlen_t was introduced
20
-// Before R 3.0.0, RLEN used to be switched to R_len_t as R_xlen_t wasn't available.
21
-// We could now replace all RLEN with R_xlen_t directly. Or keep RLEN for the shorter
22
-// name so as not to have to check closely one letter difference R_xlen_t/R_len_t. We
23
-// might also undefine R_len_t to ensure not to use it.
24
-typedef R_xlen_t RLEN;
25
-
26
#define IS_UTF8(x) (LEVELS(x) & 8)
27
#define IS_ASCII(x) (LEVELS(x) & 64)
28
#define IS_LATIN(x) (LEVELS(x) & 4)
0 commit comments