| 383 | |
| 384 | template <typename Key, typename Mapped, typename Hash, typename Equals, typename Allocator> |
| 385 | auto FlatHashMap<Key, Mapped, Hash, Equals, Allocator>::insert(value_type const& value) -> pair<iterator, bool> { |
| 386 | auto res = m_table.insert(TableValue(value)); |
| 387 | return {iterator{res.first}, res.second}; |
| 388 | } |
| 389 | |
| 390 | template <typename Key, typename Mapped, typename Hash, typename Equals, typename Allocator> |
| 391 | template <typename T, typename> |