Removes all the elements of the array. https://arduinojson.org/v7/api/jsonarray/clear/
| 127 | // Removes all the elements of the array. |
| 128 | // https://arduinojson.org/v7/api/jsonarray/clear/ |
| 129 | void clear() const { |
| 130 | detail::ArrayData::clear(data_, resources_); |
| 131 | } |
| 132 | |
| 133 | // Gets or sets the element at the specified index. |
| 134 | // https://arduinojson.org/v7/api/jsonarray/subscript/ |