integer64 and Rcpp compatibility
I will need 64 bits integer in my package in a close future. I'm studying the feasibility based on the bit64 package. Basically I plan to have one or more columns in a data.table with an interger64 S3 class and I plan to pass this table to C++ functions using Rcpp. The following nanotime example from Rcpp gallery explains clearly how a vector of 64 bits int is built upon a vector of double and explain how to create an integer64 object from C++ to R. I'm now wondering how to deal with an interger64 from R to C++. I guess I can invert the principle. void useInt64(NumericVector v) { double len =