| 89 | } |
| 90 | |
| 91 | Status MapBuilder::Resize(int64_t capacity) { |
| 92 | RETURN_NOT_OK(list_builder_->Resize(capacity)); |
| 93 | capacity_ = list_builder_->capacity(); |
| 94 | return Status::OK(); |
| 95 | } |
| 96 | |
| 97 | void MapBuilder::Reset() { |
| 98 | list_builder_->Reset(); |
no test coverage detected