JsonArray¶
At¶
JsonData& At(const std::size_t idx)
const JsonData& At(const std::size_t idx) const
Will return the JsonData object at index idx
.
If the requested index does not exist, a JsonArrayOutOfRangeException
will be thrown.
Aliases¶
Alternative ways to call this function
myArray[idx];
myJsonData[idx];