| 634 | } |
| 635 | |
| 636 | bool String::hasPrefix(const StringView prefix) const { |
| 637 | return StringView{*this}.hasPrefix(prefix); |
| 638 | } |
| 639 | |
| 640 | bool String::hasPrefix(const char prefix) const { |
| 641 | return StringView{*this}.hasPrefix(prefix); |
no outgoing calls
no test coverage detected