| 69 | /// @return `true` if other was found, `false` if end was reached |
| 70 | template <typename OtherIterator> |
| 71 | [[nodiscard]] bool advanceAfterFinding(StringIterator<OtherIterator> other) |
| 72 | { |
| 73 | return advanceBeforeOrAfterFinding<OtherIterator, true>(other); |
| 74 | } |
| 75 | |
| 76 | [[nodiscard]] bool advanceAfterFinding(StringIterator other) { return advanceAfterFindingSameIterator(other); } |
| 77 |
nothing calls this directly
no outgoing calls
no test coverage detected