BloombergLP::bdljsn::JsonObject::find

find overloads

Synopses

Declared in <bdljsn_json.h>

Return an iterator providing modifiable access to the Member object in this JsonObject with a key equivalent to the specified key, if such an entry exists, and the past-the-end iterator (end) otherwise.

JsonObject::Iterator
find(std::string_view const& key);
» more...

Return an iterator providing non-modifiable access to the Member object in this JsonObject with a key equivalent to the specified key, if such an entry exists, and the past-the-end iterator (end) otherwise.

JsonObject::ConstIterator
find(std::string_view const& key) const;
» more...