Returns the depth (nesting level) of the value. https://arduinojson.org/v7/api/jsonvariant/nesting/
| 99 | // Returns the depth (nesting level) of the value. |
| 100 | // https://arduinojson.org/v7/api/jsonvariant/nesting/ |
| 101 | size_t nesting() const { |
| 102 | return VariantData::nesting(getData(), getResourceManager()); |
| 103 | } |
| 104 | |
| 105 | // Appends a new (empty) element to the array. |
| 106 | // Returns a reference to the new element. |
nothing calls this directly
no test coverage detected