| 86 | using const_iterator = typename ht::const_iterator; |
| 87 | |
| 88 | array_set() : array_set(ht::DEFAULT_INIT_BUCKET_COUNT) {} |
| 89 | |
| 90 | explicit array_set(size_type bucket_count, const Hash& hash = Hash()) |
| 91 | : m_ht(bucket_count, hash, ht::DEFAULT_MAX_LOAD_FACTOR) {} |
nothing calls this directly
no outgoing calls
no test coverage detected