find pointer to value or nullptr
| 615 | |
| 616 | // find pointer to value or nullptr |
| 617 | T *find_value(const Key &key) { |
| 618 | auto idx = find_index(key); |
| 619 | return idx == npos() ? nullptr : &_buckets[idx].value; |
| 620 | } |
| 621 | |
| 622 | const T *find_value(const Key &key) const { |
| 623 | auto idx = find_index(key); |
no test coverage detected