Returns the size of the array or object. https://arduinojson.org/v7/api/jsonvariant/size/
| 93 | // Returns the size of the array or object. |
| 94 | // https://arduinojson.org/v7/api/jsonvariant/size/ |
| 95 | size_t size() const { |
| 96 | return VariantData::size(getData(), getResourceManager()); |
| 97 | } |
| 98 | |
| 99 | // Returns the depth (nesting level) of the value. |
| 100 | // https://arduinojson.org/v7/api/jsonvariant/nesting/ |
nothing calls this directly
no test coverage detected