MCPcopy Create free account
hub / github.com/bblanchon/ArduinoJson / operator[]

Function operator[]

src/ArduinoJson/Array/JsonArray.hpp:137–139  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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/

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected