MCPcopy Create free account
hub / github.com/KLayout/klayout / next_up

Method next_up

src/db/db/dbLayoutQuery.cc:2437–2451  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2435}
2436
2437void
2438LayoutQueryIterator::next_up (bool skip)
2439{
2440 while (! m_state.empty ()) {
2441 if (mp_progress) {
2442 ++*mp_progress;
2443 }
2444 m_state.back ()->proceed (skip);
2445 if (m_state.back ()->at_end ()) {
2446 m_state.pop_back ();
2447 } else {
2448 break;
2449 }
2450 }
2451}
2452
2453bool
2454LayoutQueryIterator::next_down ()

Callers

nothing calls this directly

Calls 5

proceedMethod · 0.80
emptyMethod · 0.45
backMethod · 0.45
at_endMethod · 0.45
pop_backMethod · 0.45

Tested by

no test coverage detected