| 2338 | } |
| 2339 | |
| 2340 | void ValueIteratorBase::copy(const SelfType& other) { |
| 2341 | current_ = other.current_; |
| 2342 | isNull_ = other.isNull_; |
| 2343 | } |
| 2344 | |
| 2345 | Value ValueIteratorBase::key() const { |
| 2346 | const Value::CZString czstring = (*current_).first; |
no outgoing calls
no test coverage detected