Returns an iterator to the first element of the array. https://arduinojson.org/v7/api/jsonarray/begin/
| 77 | // Returns an iterator to the first element of the array. |
| 78 | // https://arduinojson.org/v7/api/jsonarray/begin/ |
| 79 | iterator begin() const { |
| 80 | if (!data_) |
| 81 | return iterator(); |
| 82 | return iterator(data_->createIterator(resources_), resources_); |
| 83 | } |
| 84 | |
| 85 | // Returns an iterator following the last element of the array. |
| 86 | // https://arduinojson.org/v7/api/jsonarray/end/ |