| 698 | } |
| 699 | |
| 700 | MutableStringView String::trimmedSuffix(const StringView characters) { |
| 701 | return MutableStringView{*this}.trimmedSuffix(characters); |
| 702 | } |
| 703 | |
| 704 | StringView String::trimmedSuffix(const StringView characters) const { |
| 705 | return StringView{*this}.trimmedSuffix(characters); |
no outgoing calls
no test coverage detected