| 107 | // https://arduinojson.org/v7/api/jsonvariant/add/ |
| 108 | template <typename T, enable_if_t<!is_same<T, JsonVariant>::value, int> = 0> |
| 109 | T add() const { |
| 110 | return add<JsonVariant>().template to<T>(); |
| 111 | } |
| 112 | |
| 113 | // Appends a new (null) element to the array. |
| 114 | // Returns a reference to the new element. |
nothing calls this directly
no test coverage detected