| 794 | } |
| 795 | |
| 796 | MutableStringView String::findAny(const StringView characters) { |
| 797 | return MutableStringView{*this}.findAny(characters); |
| 798 | } |
| 799 | |
| 800 | StringView String::findAny(const StringView characters) const { |
| 801 | return StringView{*this}.findAny(characters); |
no outgoing calls
no test coverage detected