MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / operator ++

Method operator ++

unittests/catch.hpp:5513–5519  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5511 return row;
5512 }
5513 auto operator ++() -> iterator& {
5514 for( size_t i = 0; i < m_columns.size(); ++i ) {
5515 if (m_iterators[i] != m_columns[i].end())
5516 ++m_iterators[i];
5517 }
5518 return *this;
5519 }
5520 auto operator ++(int) -> iterator {
5521 iterator prev( *this );
5522 operator++();

Callers

nothing calls this directly

Calls 2

sizeMethod · 0.45
endMethod · 0.45

Tested by

no test coverage detected