MCPcopy Create free account
hub / github.com/ObEngine/ObEngine / next

Method next

extlibs/catch/include/catch/catch.hpp:4076–4083  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4074 }
4075
4076 bool next() override {
4077 bool success = m_generator.next();
4078 if (!success) {
4079 return false;
4080 }
4081 while (!m_predicate(m_generator.get()) && (success = m_generator.next()) == true);
4082 return success;
4083 }
4084 };
4085
4086 template <typename T, typename Predicate>

Callers

nothing calls this directly

Calls 2

nextMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected