71 template <std::
size_t n>
74 return value_context<key_context>(_core);
87 value_context<key_context>
operator<<(std::string str) {
89 return value_context<key_context>(_core);
102 value_context<key_context>
operator<<(stdx::string_view str) {
104 return value_context<key_context>(_core);
115 template <
typename T>
116 detail::requires_t<key_context&, detail::is_invocable<T, key_context>>
118 detail::invoke(std::forward<T>(func), *
this);
132 template <
typename T>
134 std::is_same<base, closed_context>,
135 detail::is_alike<T, finalize_type>>
The bsoncxx macro guard postlude header.
The bsoncxx macro guard prelude header.
A low-level interface for constructing BSON documents and arrays.
Definition core.hpp:46
core & key_owned(std::string key)
Appends a key passed as an STL string. Transfers ownership of the key to this class.
core & key_view(stdx::string_view key)
Appends a key passed as a non-owning stdx::string_view.
core & concatenate(const bsoncxx::v_noabi::document::view &view)
Appends the keys from a BSON document into this BSON datum.
bsoncxx::v_noabi::document::value extract_document()
Transfers ownership of the underlying document to the caller.
core & close_document()
Closes the current sub-document within this BSON datum.
A stream context which expects a key, which can later be followed by value, then more key/value pairs...
Definition key_context.hpp:51
key_context operator<<(concatenate_doc doc)
<< operator for concatenating another document.
Definition key_context.hpp:149
value_context< key_context > operator<<(const char(&v)[n])
<< operator for accepting a literal key and appending it to the core builder.
Definition key_context.hpp:72
base operator<<(const close_document_type)
<< operator for closing a subdocument in the core builder.
Definition key_context.hpp:159
key_context(core *core)
Create a key_context given a core builder.
Definition key_context.hpp:59
A stream context which expects a value, which can later be followed by more key/value pairs.
Definition value_context.hpp:50
A read-only BSON document that owns its underlying buffer. When a document::value goes out of scope,...
Definition value.hpp:38
A polyfill for std::string_view.
Definition string_view.hpp:503
Declares bsoncxx::v_noabi::builder::stream::closed_context.
Provides bsoncxx::v_noabi::builder::core.
Declares bsoncxx::v_noabi::builder::stream::key_context.
The top-level namespace within which all bsoncxx library entities are declared.
Provides std::string_view-related polyfills for library API usage.
Container to concatenate a document. Use it by constructing an instance with the document to be conca...
Definition concatenate.hpp:32
The type of a stream manipulator to close a subdocument.
Definition helpers.hpp:44
Provides <type_traits>-related polyfills for internal use.
Provides bsoncxx::v_noabi::builder::stream::value_context.