| 544 | } |
| 545 | |
| 546 | MutableStringView String::exceptPrefix(const std::size_t count) { |
| 547 | return MutableStringView{*this}.exceptPrefix(count); |
| 548 | } |
| 549 | |
| 550 | StringView String::exceptPrefix(const std::size_t count) const { |
| 551 | return StringView{*this}.exceptPrefix(count); |
no outgoing calls
no test coverage detected