Returns an iterator to the first element of the array. https://arduinojson.org/v7/api/jsonarrayconst/begin/
| 24 | // Returns an iterator to the first element of the array. |
| 25 | // https://arduinojson.org/v7/api/jsonarrayconst/begin/ |
| 26 | iterator begin() const { |
| 27 | if (!data_) |
| 28 | return iterator(); |
| 29 | return iterator(data_->createIterator(resources_), resources_); |
| 30 | } |
| 31 | |
| 32 | // Returns an iterator to the element following the last element of the array. |
| 33 | // https://arduinojson.org/v7/api/jsonarrayconst/end/ |
no test coverage detected