Removes the element at the specified iterator. https://arduinojson.org/v7/api/jsonarray/remove/
| 106 | // Removes the element at the specified iterator. |
| 107 | // https://arduinojson.org/v7/api/jsonarray/remove/ |
| 108 | void remove(iterator it) const { |
| 109 | detail::ArrayData::remove(data_, it.iterator_, resources_); |
| 110 | } |
| 111 | |
| 112 | // Removes the element at the specified index. |
| 113 | // https://arduinojson.org/v7/api/jsonarray/remove/ |