Skip to content
Prev 4638 / 10988 Next

[Rcpp-devel] Working with strings

Hi all,

Am I doing something wrong with the functions below, or has this
behaviour not yet been implemented in Rcpp?

    cppFunction('std::string first_char(CharacterVector x) {
      return x[0];
    }')

    cppFunction('CharacterVector miss_c() {
      return CharacterVector::create(NA_STRING);
    }')

Hadley