| 2071 | } |
| 2072 | |
| 2073 | void ValueIteratorBase::copy(const SelfType& other) { |
| 2074 | current_ = other.current_; |
| 2075 | isNull_ = other.isNull_; |
| 2076 | } |
| 2077 | |
| 2078 | Value ValueIteratorBase::key() const { |
| 2079 | const Value::CZString czstring = (*current_).first; |
no outgoing calls
no test coverage detected