2
Giá trị Rcpp và int64 NA
Làm cách nào tôi có thể chuyển một giá trị NA từ Rcpp sang R trong một vectơ 64 bit? Cách tiếp cận đầu tiên của tôi sẽ là: // [[Rcpp::export]] Rcpp::NumericVector foo() { Rcpp::NumericVector res(2); int64_t val = 1234567890123456789; std::memcpy(&(res[0]), &(val), sizeof(double)); res[1] = NA_REAL; res.attr("class") = "integer64"; return …