[[Rcpp::export]]
| 6 | |
| 7 | // [[Rcpp::export]] |
| 8 | String String_replace_all( String z, String x, String y){ |
| 9 | z.replace_all( x, y ) ; |
| 10 | return z ; |
| 11 | } |
| 12 | |
| 13 | // [[Rcpp::export]] |
| 14 | String String_replace_first( String z, String x, String y){ |
nothing calls this directly
no outgoing calls
no test coverage detected