[[Rcpp::export]]
| 114 | |
| 115 | // [[Rcpp::export]] |
| 116 | String test_push_front(String x) { |
| 117 | x.push_front("abc"); |
| 118 | return x; |
| 119 | } |
| 120 | |
| 121 | // [[Rcpp::export]] |
| 122 | int test_String_encoding(String x) { |
nothing calls this directly
no test coverage detected