Removes the member at the specified iterator. https://arduinojson.org/v7/api/jsonobject/remove/
| 131 | // Removes the member at the specified iterator. |
| 132 | // https://arduinojson.org/v7/api/jsonobject/remove/ |
| 133 | FORCE_INLINE void remove(iterator it) const { |
| 134 | detail::ObjectData::remove(data_, it.iterator_, resources_); |
| 135 | } |
| 136 | |
| 137 | // Removes the member with the specified key. |
| 138 | // https://arduinojson.org/v7/api/jsonobject/remove/ |
nothing calls this directly
no test coverage detected