Returns the depth (nesting level) of the object. https://arduinojson.org/v7/api/jsonobject/nesting/
| 55 | // Returns the depth (nesting level) of the object. |
| 56 | // https://arduinojson.org/v7/api/jsonobject/nesting/ |
| 57 | size_t nesting() const { |
| 58 | return detail::VariantData::nesting(collectionToVariant(data_), resources_); |
| 59 | } |
| 60 | |
| 61 | // Returns the number of members in the object. |
| 62 | // https://arduinojson.org/v7/api/jsonobject/size/ |
nothing calls this directly
no test coverage detected