Removes an element of the array. https://arduinojson.org/v7/api/jsonvariant/remove/
| 135 | // Removes an element of the array. |
| 136 | // https://arduinojson.org/v7/api/jsonvariant/remove/ |
| 137 | void remove(size_t index) const { |
| 138 | VariantData::removeElement(getData(), index, getResourceManager()); |
| 139 | } |
| 140 | |
| 141 | // Removes a member of the object. |
| 142 | // https://arduinojson.org/v7/api/jsonvariant/remove/ |
nothing calls this directly
no test coverage detected