| 23 | } |
| 24 | |
| 25 | Table::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 | |
| 33 | const Table::hashes_type& Table::hashes() const { |
| 34 | return rows; |
nothing calls this directly
no outgoing calls
no test coverage detected