| 682 | } |
| 683 | |
| 684 | MutableStringView String::trimmedPrefix(const StringView characters) { |
| 685 | return MutableStringView{*this}.trimmedPrefix(characters); |
| 686 | } |
| 687 | |
| 688 | StringView String::trimmedPrefix(const StringView characters) const { |
| 689 | return StringView{*this}.trimmedPrefix(characters); |
no outgoing calls
no test coverage detected