[[Rcpp::export]]
| 730 | |
| 731 | // [[Rcpp::export]] |
| 732 | std::string character_vector_const_proxy(const CharacterVector& str){ |
| 733 | char* cstr = (char*) str[0] ; |
| 734 | std::string res ; |
| 735 | res += cstr ; |
| 736 | return cstr ; |
| 737 | } |
| 738 | |
| 739 | // [[Rcpp::export]] |
| 740 | CharacterVector CharacterVector_test_const_proxy(const CharacterVector x){ |
nothing calls this directly
no outgoing calls
no test coverage detected