MCPcopy Create free account
hub / github.com/Achain-Dev/Achain / eof

Method eof

include/win/boost/algorithm/string/find_iterator.hpp:160–168  ·  view source on GitHub ↗

Eof check ! Check the eof condition. Eof condition means that there is nothing more to be searched i.e. find_iterator is after the last match. */

Source from the content-addressed store, hash-verified

158 is after the last match.
159 */
160 bool eof() const
161 {
162 return
163 this->is_null() ||
164 (
165 m_Match.begin() == m_End &&
166 m_Match.end() == m_End
167 );
168 }
169
170 private:
171 // Attributes

Callers 2

equalMethod · 0.45
equalMethod · 0.45

Calls 3

is_nullMethod · 0.45
beginMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected