Returns an iterator to the first key-value pair of the object. https://arduinojson.org/v7/api/jsonobjectconst/begin/
| 57 | // Returns an iterator to the first key-value pair of the object. |
| 58 | // https://arduinojson.org/v7/api/jsonobjectconst/begin/ |
| 59 | iterator begin() const { |
| 60 | if (!data_) |
| 61 | return iterator(); |
| 62 | return iterator(data_->createIterator(resources_), resources_); |
| 63 | } |
| 64 | |
| 65 | // Returns an iterator following the last key-value pair of the object. |
| 66 | // https://arduinojson.org/v7/api/jsonobjectconst/end/ |
nothing calls this directly
no test coverage detected