MCPcopy Create free account
hub / github.com/ChaiScript/ChaiScript / iterator

Method iterator

unittests/catch.hpp:5467–5475  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

5465 size_t m_activeIterators;
5466
5467 iterator( Columns const& columns, EndTag )
5468 : m_columns( columns.m_columns ),
5469 m_activeIterators( 0 )
5470 {
5471 m_iterators.reserve( m_columns.size() );
5472
5473 for( auto const& col : m_columns )
5474 m_iterators.push_back( col.end() );
5475 }
5476
5477 public:
5478 explicit iterator( Columns const& columns )

Callers

nothing calls this directly

Calls 3

sizeMethod · 0.45
endMethod · 0.45
beginMethod · 0.45

Tested by

no test coverage detected