Returns an iterator to the element following the last element of the array. https://arduinojson.org/v7/api/jsonarrayconst/end/
| 32 | // Returns an iterator to the element following the last element of the array. |
| 33 | // https://arduinojson.org/v7/api/jsonarrayconst/end/ |
| 34 | iterator end() const { |
| 35 | return iterator(); |
| 36 | } |
| 37 | |
| 38 | // Creates an unbound reference. |
| 39 | JsonArrayConst() : data_(0), resources_(0) {} |
no test coverage detected