Returns the number of unique elements. */
| 67 | bool is_empty() const { return m_hash.records == 0; } |
| 68 | /** Returns the number of unique elements. */ |
| 69 | size_t size() const { return static_cast<size_t>(m_hash.records); } |
| 70 | /** An iterator over hash elements. Is not insert-stable. */ |
| 71 | class Iterator |
| 72 | { |
no outgoing calls
no test coverage detected