Returns the depth (nesting level) of the array. https://arduinojson.org/v7/api/jsonarray/nesting/
| 168 | // Returns the depth (nesting level) of the array. |
| 169 | // https://arduinojson.org/v7/api/jsonarray/nesting/ |
| 170 | size_t nesting() const { |
| 171 | return detail::VariantData::nesting(collectionToVariant(data_), resources_); |
| 172 | } |
| 173 | |
| 174 | // Returns the number of elements in the array. |
| 175 | // https://arduinojson.org/v7/api/jsonarray/size/ |
no test coverage detected