| 48 | template <typename T, |
| 49 | detail::enable_if_t<detail::is_integral<T>::value, int> = 0> |
| 50 | JsonVariantConst operator[](T index) const { |
| 51 | return JsonVariantConst( |
| 52 | detail::ArrayData::getElement(data_, size_t(index), resources_), |
| 53 | resources_); |
| 54 | } |
| 55 | |
| 56 | // Returns the element at the specified index. |
| 57 | // https://arduinojson.org/v7/api/jsonarrayconst/subscript/ |
nothing calls this directly
no test coverage detected