MCPcopy Create free account
hub / github.com/Pagghiu/SaneCppLibraries / advanceAfterFinding

Function advanceAfterFinding

Libraries/Strings/StringIterator.h:71–74  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected