...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
Access an element via JSON Pointer.
boost::system::result
<value
const & > try_at_pointer(string_view
ptr) const noexcept;
This function is used to access a (potentially nested) element of the value using a JSON Pointer string.
Linear in the sizes of ptr
and underlying array, object, or string.
No-throw guarantee.
Name |
Description |
---|---|
|
JSON Pointer string. |
boost::system::result<value&>
containing either a reference to the element identified by ptr
or a corresponding error_code
.