17 #include <bsoncxx/builder/core.hpp>
18 #include <bsoncxx/builder/stream/array_context.hpp>
19 #include <bsoncxx/builder/stream/closed_context.hpp>
20 #include <bsoncxx/builder/stream/helpers.hpp>
21 #include <bsoncxx/util/functor.hpp>
23 #include <bsoncxx/config/prelude.hpp>
26 BSONCXX_INLINE_NAMESPACE_BEGIN
68 typename std::enable_if<!util::is_functor<T, void(single_context)>::value, base>::type
70 _core->
append(std::forward<T>(t));
83 typename std::enable_if<util::is_functor<T, void(single_context)>::value, base>::type
97 return wrap_document();
118 #if !defined(_MSC_VER)
121 std::is_same<
value_context, decltype(std::declval<value_context>() << 1 <<
"str")>::value,
122 "value_context must be templatized on a key_context");
126 BSONCXX_INLINE base unwrap() {
130 BSONCXX_INLINE array_context<base> wrap_array() {
131 return array_context<base>(_core);
134 BSONCXX_INLINE key_context<base> wrap_document() {
135 return key_context<base>(_core);
143 BSONCXX_INLINE_NAMESPACE_END
146 #include <bsoncxx/config/postlude.hpp>
Definition: helpers.hpp:29
A low-level interface for constructing BSON documents and arrays.
Definition: core.hpp:42
A stream context which expects any number of values.
Definition: array_context.hpp:52
Definition: helpers.hpp:49
std::enable_if<!util::is_functor< T, void(single_context)>::value, base >::type operator<<(T &&t)
<< operator for accepting a real value and appending it to the core builder.
Definition: value_context.hpp:69
A stream context which expects a key, which can later be followed by value, then more key/value pairs...
Definition: array_context.hpp:32
A stream context which appends a single value.
Definition: single_context.hpp:36
void open_array()
Opens a sub-array within this BSON datum.
void append(const types::b_double &value)
Append a BSON double.
value_context(core *core)
Create a value_context given a core builder.
Definition: value_context.hpp:56
A stream context which expects a value, which can later be followed by more key/value pairs...
Definition: value_context.hpp:48
Definition: element.hpp:24
void open_document()
Opens a sub-document within this BSON datum.