| 750 | } |
| 751 | |
| 752 | MutableStringView String::findLast(const StringView substring) { |
| 753 | // Calling straight into the concrete implementation to reduce call stack depth |
| 754 | return MutableStringView{*this}.findLastOr(substring, nullptr); |
| 755 | } |
| 756 | |
| 757 | StringView String::findLast(const StringView substring) const { |
| 758 | // Calling straight into the concrete implementation to reduce call stack depth |
no test coverage detected