return the value of an iterator
| 6197 | |
| 6198 | /// return the value of an iterator |
| 6199 | reference value() const |
| 6200 | { |
| 6201 | auto it = --this->base(); |
| 6202 | return it.operator * (); |
| 6203 | } |
| 6204 | }; |
| 6205 | } // namespace detail |
| 6206 | } // namespace nlohmann |
nothing calls this directly
no test coverage detected