| 2320 | } |
| 2321 | |
| 2322 | void ValueIteratorBase::copy(const SelfType& other) { |
| 2323 | current_ = other.current_; |
| 2324 | isNull_ = other.isNull_; |
| 2325 | } |
| 2326 | |
| 2327 | Value ValueIteratorBase::key() const { |
| 2328 | const Value::CZString czstring = (*current_).first; |
no outgoing calls
no test coverage detected