| 580 | } |
| 581 | |
| 582 | std::size_t value::hash() const |
| 583 | { |
| 584 | std::size_t h = 0; |
| 585 | visit_for_compare(*this, |
| 586 | [&](const auto& a) { h = compute_hash(rank<2>{}, this->get_key(), a); }); |
| 587 | return h; |
| 588 | } |
| 589 | |
| 590 | void value::debug_print(bool show_type) const |
| 591 | { |
no test coverage detected