| 642 | } |
| 643 | |
| 644 | bool String::hasSuffix(const StringView suffix) const { |
| 645 | return StringView{*this}.hasSuffix(suffix); |
| 646 | } |
| 647 | |
| 648 | bool String::hasSuffix(const char suffix) const { |
| 649 | return StringView{*this}.hasSuffix(suffix); |
no outgoing calls
no test coverage detected