| 135 | template <typename T, |
| 136 | detail::enable_if_t<detail::is_integral<T>::value, int> = 0> |
| 137 | detail::ElementProxy<JsonArray> operator[](T index) const { |
| 138 | return {*this, size_t(index)}; |
| 139 | } |
| 140 | |
| 141 | // Gets or sets the element at the specified index. |
| 142 | // https://arduinojson.org/v7/api/jsonarray/subscript/ |
nothing calls this directly
no outgoing calls
no test coverage detected