MCPcopy Create free account
hub / github.com/cucumber/cucumber-cpp / buildHashRow

Method buildHashRow

src/Table.cpp:25–31  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

23}
24
25Table::hash_row_type Table::buildHashRow(const row_type& row) {
26 hash_row_type hashRow;
27 for (columns_type::size_type i = 0; i < columns.size(); ++i) {
28 hashRow[columns[i]] = row[i];
29 }
30 return hashRow;
31}
32
33const Table::hashes_type& Table::hashes() const {
34 return rows;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected