MCPcopy Create free account
hub / github.com/comaps/comaps / Iterator

Method Iterator

libs/coding/csv_reader.cpp:118–122  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

116}
117
118CSVRunner::Iterator::Iterator(CSVReader & reader, bool isEnd) : m_reader(reader)
119{
120 if (!isEnd)
121 m_current = m_reader.ReadRow();
122}
123
124CSVRunner::Iterator::Iterator(Iterator const & other) : m_reader(other.m_reader), m_current(other.m_current) {}
125

Callers

nothing calls this directly

Calls 1

ReadRowMethod · 0.80

Tested by

no test coverage detected