| 2328 | } |
| 2329 | |
| 2330 | void ValueIteratorBase::copy(const SelfType& other) { |
| 2331 | current_ = other.current_; |
| 2332 | isNull_ = other.isNull_; |
| 2333 | } |
| 2334 | |
| 2335 | Value ValueIteratorBase::key() const { |
| 2336 | const Value::CZString czstring = (*current_).first; |
no outgoing calls