| 552 | } |
| 553 | |
| 554 | MutableStringView String::exceptSuffix(const std::size_t count) { |
| 555 | return MutableStringView{*this}.exceptSuffix(count); |
| 556 | } |
| 557 | |
| 558 | StringView String::exceptSuffix(const std::size_t count) const { |
| 559 | return StringView{*this}.exceptSuffix(count); |
no outgoing calls
no test coverage detected