Returns an iterator to the first key-value pair of the object. https://arduinojson.org/v7/api/jsonobject/begin/
| 67 | // Returns an iterator to the first key-value pair of the object. |
| 68 | // https://arduinojson.org/v7/api/jsonobject/begin/ |
| 69 | iterator begin() const { |
| 70 | if (!data_) |
| 71 | return iterator(); |
| 72 | return iterator(data_->createIterator(resources_), resources_); |
| 73 | } |
| 74 | |
| 75 | // Returns an iterator following the last key-value pair of the object. |
| 76 | // https://arduinojson.org/v7/api/jsonobject/end/ |
nothing calls this directly
no test coverage detected