| 1567 | } |
| 1568 | |
| 1569 | String::View String::view() const { |
| 1570 | return String::View( mString ); |
| 1571 | } |
| 1572 | |
| 1573 | void String::replace( std::string& target, const std::string& that, const std::string& with ) { |
| 1574 | std::size_t start_pos = target.find( that ); |
no outgoing calls
no test coverage detected