Returns true if the dictionary is full.
| 193 | |
| 194 | /// Returns true if the dictionary is full. |
| 195 | bool IsFull() const override { |
| 196 | return nodes_.size() >= Node::INVALID_INDEX; |
| 197 | } |
| 198 | |
| 199 | /// Execute 'func' for each key that is present in the dictionary. Stops execution the |
| 200 | /// first time 'func' returns an error, propagating the error. Returns OK otherwise. |
no test coverage detected