[[Rcpp::export]]
| 12 | |
| 13 | // [[Rcpp::export]] |
| 14 | String String_replace_first( String z, String x, String y){ |
| 15 | z.replace_first( x, y ) ; |
| 16 | return z ; |
| 17 | } |
| 18 | // [[Rcpp::export]] |
| 19 | String String_replace_last( String z, String x, String y){ |
| 20 | z.replace_last( x, y ) ; |
nothing calls this directly
no outgoing calls
no test coverage detected