JSON for Modern C++ 2.1.1
Loading...
Searching...
No Matches

◆ at() [1/6]

template<template< typename U, typename V, typename... Args > class ObjectType = std::map, template< typename U, typename... Args > class ArrayType = std::vector, class StringType = std::string, class BooleanType = bool, class NumberIntegerType = std::int64_t, class NumberUnsignedType = std::uint64_t, class NumberFloatType = double, template< typename U > class AllocatorType = std::allocator, template< typename T, typename SFINAE=void > class JSONSerializer = adl_serializer>
reference nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer >::at ( const json_pointer ptr)
inline

Returns a reference to the element at with specified JSON pointer ptr, with bounds checking.

Parameters
[in]ptrJSON pointer to the desired element
Returns
reference to the element pointed to by ptr
Complexity\n Constant.
Exceptions
std::out_of_rangeif the JSON pointer can not be resolved
std::domain_errorif an array index begins with '0'
std::invalid_argumentif an array index was not a number
Example\n The behavior is shown in the example. \n @includelineno at_json_pointer.cpp \n Output (play with this example @htmlinclude at_json_pointer.link):\n @verbinclude at_json_pointer.output \n The example code above can be translated with @verbatim g++ -std=c++11 -Isrc doc/examples/at_json_pointer.cpp -o at_json_pointer @endverbatim
Since
version 2.0.0

Definition at line 11793 of file json.hpp.