///////////////////////////////////////////////////////
| 379 | |
| 380 | //////////////////////////////////////////////////////////// |
| 381 | void String::replace(std::size_t position, std::size_t length, const String& replaceWith) |
| 382 | { |
| 383 | m_string.replace(position, length, replaceWith.m_string); |
| 384 | } |
| 385 | |
| 386 | |
| 387 | //////////////////////////////////////////////////////////// |
no test coverage detected