MCPcopy Create free account
hub / github.com/apache/trafficserver / nextImpl

Method nextImpl

lib/catch2/catch.hpp:4184–4191  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

4182
4183 private:
4184 bool nextImpl() {
4185 bool success = m_generator.next();
4186 if (!success) {
4187 return false;
4188 }
4189 while (!m_predicate(m_generator.get()) && (success = m_generator.next()) == true);
4190 return success;
4191 }
4192 };
4193
4194 template <typename T, typename Predicate>

Callers

nothing calls this directly

Calls 2

nextMethod · 0.45
getMethod · 0.45

Tested by

no test coverage detected