Lower case for c++11 for each.
| 274 | |
| 275 | // Lower case for c++11 for each. |
| 276 | iterator begin() { |
| 277 | iterator ret(this, 0); |
| 278 | if (num_buckets_ != 0 && IsFreeSlot(ret.index_)) { |
| 279 | ++ret; // Skip all the empty slots. |
| 280 | } |
| 281 | return ret; |
| 282 | } |
| 283 | |
| 284 | // Lower case for c++11 for each. const version. |
| 285 | const_iterator begin() const { |
no outgoing calls
no test coverage detected