| 2359 | } |
| 2360 | |
| 2361 | void ValueIteratorBase::copy(const SelfType& other) { |
| 2362 | current_ = other.current_; |
| 2363 | isNull_ = other.isNull_; |
| 2364 | } |
| 2365 | |
| 2366 | Value ValueIteratorBase::key() const { |
| 2367 | const Value::CZString czstring = (*current_).first; |
no outgoing calls