| 195 | |
| 196 | template <typename Value, typename Key, typename GetKey, typename Hash, typename Equals, typename Allocator> |
| 197 | Value const* FlatHashTable<Value, Key, GetKey, Hash, Equals, Allocator>::Bucket::valuePtr() const { |
| 198 | if (hash & FilledHashBit) |
| 199 | return &this->value; |
| 200 | return nullptr; |
| 201 | } |
| 202 | |
| 203 | template <typename Value, typename Key, typename GetKey, typename Hash, typename Equals, typename Allocator> |
| 204 | Value* FlatHashTable<Value, Key, GetKey, Hash, Equals, Allocator>::Bucket::valuePtr() { |
no outgoing calls
no test coverage detected