| 378 | |
| 379 | template <typename Key, typename Mapped, typename Hash, typename Equals, typename Allocator> |
| 380 | void FlatHashMap<Key, Mapped, Hash, Equals, Allocator>::clear() { |
| 381 | m_table.clear(); |
| 382 | } |
| 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> { |