| 417 | |
| 418 | template <typename Value, typename Key, typename GetKey, typename Hash, typename Equals, typename Allocator> |
| 419 | auto FlatHashTable<Value, Key, GetKey, Hash, Equals, Allocator>::find(Key const& key) const -> const_iterator { |
| 420 | return const_cast<FlatHashTable*>(this)->find(key); |
| 421 | } |
| 422 | |
| 423 | template <typename Value, typename Key, typename GetKey, typename Hash, typename Equals, typename Allocator> |
| 424 | auto FlatHashTable<Value, Key, GetKey, Hash, Equals, Allocator>::find(Key const& key) -> iterator { |