| 282 | } |
| 283 | |
| 284 | Iterator begin() { return Iterator(entries_.get(), capacity_, 0); } |
| 285 | Iterator end() { return Iterator(entries_.get(), capacity_, capacity_); } |
| 286 | Iterator begin() const { |
| 287 | return Iterator(const_cast<Entry *>(entries_.get()), capacity_, 0); |