[[Rcpp::export]]
| 42 | |
| 43 | // [[Rcpp::export]] |
| 44 | CharacterVector test_sapply_string( CharacterVector text, CharacterVector old , CharacterVector new_){ |
| 45 | CharacterVector res = sapply( text, StringConv( old, new_ ) ) ; |
| 46 | return res ; |
| 47 | } |
| 48 | |
| 49 | // [[Rcpp::export]] |
| 50 | String test_ctor(String x) { |
nothing calls this directly
no test coverage detected