| 308 | } |
| 309 | |
| 310 | void imatrix::hash(octetStream& o) const |
| 311 | { |
| 312 | Hash hash; |
| 313 | for (auto& row : *this) |
| 314 | hash.update(row.get_ptr(), row.size_bytes()); |
| 315 | o.concat(hash.final()); |
| 316 | } |
| 317 | |
| 318 | void imatrix::pack(octetStream& o) const |
| 319 | { |
no test coverage detected