Iterators
| 99 | |
| 100 | // Iterators |
| 101 | iterator begin() { return &Buckets_; } |
| 102 | const_iterator begin() const { return const_cast<TTable*>(this)->begin(); } |
| 103 | const_iterator cbegin() const { return begin(); } |
| 104 |
no outgoing calls
no test coverage detected