| 195 | template <typename TChar> |
| 196 | ARDUINOJSON_DEPRECATED("use obj[key].to<JsonArray>() instead") |
| 197 | JsonArray createNestedArray(TChar* key) const { |
| 198 | return operator[](key).template to<JsonArray>(); |
| 199 | } |
| 200 | |
| 201 | // DEPRECATED: use obj[key].to<JsonArray>() instead |
| 202 | template <typename TString> |
nothing calls this directly
no outgoing calls
no test coverage detected