我需要将已知长度的const char*
转换为Rcpp::RawVector
才能返回到R中。
Rcpp::wrap
适用于多种类型,但似乎不适用于char *
。
答案 0 :(得分:6)
library(Rcpp)
library(inline)
ƒ <- rcpp(body='
const char* text = "this is some text";
Rcpp::RawVector rv(strlen(text));
for(unsigned int i=0; i<strlen(text); i++) { rv[i] = text[i]; }
return(rv);
')
ƒ()
## [1] 74 68 69 73 20 69 73 20 73 6f 6d 65 20 74 65 78 74
rawToChar(ƒ())
## [1] "this is some text"
<强>更新强>
#include <Rcpp.h>
#include <cstring>
// [[Rcpp::export]]
Rcpp::RawVector to_raw(const char* str) {
Rcpp::RawVector res(str, str + std::strlen(str));
return res;
}