| 528 | } |
| 529 | |
| 530 | MutableStringView String::suffix(char* const begin) { |
| 531 | return MutableStringView{*this}.suffix(begin); |
| 532 | } |
| 533 | |
| 534 | StringView String::suffix(const char* const begin) const { |
| 535 | return StringView{*this}.suffix(begin); |
no outgoing calls
no test coverage detected