[#BloombergLP-bdljsn-Json-contains] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdljsn.adoc[bdljsn]::xref:BloombergLP/bdljsn/Json.adoc[Json]::contains :relfileprefix: ../../../ :mrdocs: Return whether the held object contains a member with `key`. == Synopsis Declared in `<bdljsn_json.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- bool contains(std::string_view const& key) const; ---- == Description Return `true` if the `JsonObject` held by this `Json` object contains a member whose key is equivalent to the specified `key`, and return `false` otherwise. The behavior is undefined unless `true == isObject()`. == Return Value `true` if a member with the specified `key` is present, and `false` otherwise == Parameters [cols="1,4"] |=== | Name| Description | *key* | UTF‐8 member name |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#