| 2566 | const_iterator end() const { return _mk_const_iterator(table.ne_cend()); } |
| 2567 | const_iterator cbegin() const { return _mk_const_iterator(table.ne_cbegin()); } |
| 2568 | const_iterator cend() const { return _mk_const_iterator(table.ne_cend()); } |
| 2569 | |
| 2570 | // These come from tr1 unordered_map. They iterate over 'bucket' n. |
| 2571 | // For sparsehashtable, we could consider each 'group' to be a bucket, |