MongoDB C++ Driver
mongocxx-3.7.0
|
17 #include <bsoncxx/builder/basic/impl.hpp>
18 #include <bsoncxx/builder/basic/kvp.hpp>
19 #include <bsoncxx/builder/basic/sub_document.hpp>
20 #include <bsoncxx/builder/core.hpp>
21 #include <bsoncxx/document/value.hpp>
22 #include <bsoncxx/document/view.hpp>
24 #include <bsoncxx/config/prelude.hpp>
27 BSONCXX_INLINE_NAMESPACE_BEGIN
54 _core = std::move(doc._core);
109 template <
typename... Args>
112 document.append(std::forward<Args>(args)...);
119 BSONCXX_INLINE_NAMESPACE_END
122 #include <bsoncxx/config/postlude.hpp>
document::value extract_document()
Transfers ownership of the underlying document to the caller.
void clear()
Deletes the contents of the underlying BSON datum.
document(document &&doc) noexcept
Move constructor.
Definition: document.hpp:47
Top level namespace for MongoDB C++ BSON functionality.
Definition: element.hpp:24
bsoncxx::document::view view() const
Definition: document.hpp:61
document & operator=(document &&doc) noexcept
Move assignment operator.
Definition: document.hpp:53
A read-only BSON document that owns its underlying buffer.
Definition: value.hpp:34
document::view view_document() const
Gets a view over the document.
void clear()
Reset the underlying BSON to an empty document.
Definition: document.hpp:91
A JSON-like builder for creating documents.
Definition: list.hpp:142
A low-level interface for constructing BSON documents and arrays.
Definition: core.hpp:42
An internal class of builder::basic.
Definition: sub_document.hpp:38
A traditional builder-style interface for constructing a BSON document.
Definition: document.hpp:37
document()
Default constructor.
Definition: document.hpp:42
A read-only, non-owning view of a BSON document.
Definition: view.hpp:33
bsoncxx::document::value extract()
Transfer ownership of the underlying document to the caller.
Definition: document.hpp:84