| 714 | } |
| 715 | |
| 716 | MutableStringView String::find(const StringView substring) { |
| 717 | // Calling straight into the concrete implementation to reduce call stack depth |
| 718 | return MutableStringView{*this}.findOr(substring, nullptr); |
| 719 | } |
| 720 | |
| 721 | StringView String::find(const StringView substring) const { |
| 722 | // Calling straight into the concrete implementation to reduce call stack depth |
no test coverage detected