MCPcopy Create free account
hub / github.com/Cantera/cantera / Iterator

Method Iterator

src/base/AnyMap.cpp:1621–1630  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1619}
1620
1621AnyMap::Iterator::Iterator(
1622 const std::unordered_map<string, AnyValue>::const_iterator& start,
1623 const std::unordered_map<string, AnyValue>::const_iterator& stop)
1624{
1625 m_iter = start;
1626 m_stop = stop;
1627 while (m_iter != m_stop && (dunder(m_iter->first) || m_iter->second.is<Exclude>())) {
1628 ++m_iter;
1629 }
1630}
1631
1632AnyMap::Iterator& AnyMap::Iterator::operator++()
1633{

Callers

nothing calls this directly

Calls 1

dunderFunction · 0.85

Tested by

no test coverage detected