MCPcopy Create free account
hub / github.com/RcppCore/Rcpp / String_replace_first

Function String_replace_first

inst/tinytest/cpp/String.cpp:14–17  ·  view source on GitHub ↗

[[Rcpp::export]]

Source from the content-addressed store, hash-verified

12
13// [[Rcpp::export]]
14String String_replace_first( String z, String x, String y){
15 z.replace_first( x, y ) ;
16 return z ;
17}
18// [[Rcpp::export]]
19String String_replace_last( String z, String x, String y){
20 z.replace_last( x, y ) ;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected