| 270 | } |
| 271 | |
| 272 | StringBox StringBox::substring(size_t fromIndex) const noexcept { |
| 273 | return substring(fromIndex, length()); |
| 274 | } |
| 275 | |
| 276 | StringBox StringBox::substring(size_t fromIndex, size_t toIndex) const noexcept { |
| 277 | auto strView = std::string_view(getCStr() + fromIndex, toIndex - fromIndex); |
no test coverage detected