17 #include <bsoncxx/array/value.hpp>
18 #include <bsoncxx/builder/concatenate.hpp>
19 #include <bsoncxx/builder/core.hpp>
20 #include <bsoncxx/builder/stream/closed_context.hpp>
21 #include <bsoncxx/builder/stream/helpers.hpp>
22 #include <bsoncxx/util/functor.hpp>
24 #include <bsoncxx/config/prelude.hpp>
27 BSONCXX_INLINE_NAMESPACE_BEGIN
51 template <
class base = closed_context>
71 BSONCXX_INLINE
typename std::enable_if<
72 !(util::is_functor<T, void(array_context<>)>::value ||
74 std::is_same<typename std::remove_reference<T>::type,
const finalize_type>::value),
77 _core->
append(std::forward<T>(t));
89 template <
typename Func>
90 BSONCXX_INLINE
typename std::enable_if<(util::is_functor<Func, void(array_context<>)>::value ||
93 operator<<(Func func) {
109 template <
typename T>
110 BSONCXX_INLINE
typename std::enable_if<
111 std::is_same<base, closed_context>::value &&
112 std::is_same<typename std::remove_reference<T>::type,
const finalize_type>::value,
128 return wrap_document();
183 BSONCXX_INLINE base unwrap() {
187 BSONCXX_INLINE array_context<array_context> wrap_array() {
188 return array_context<array_context>(_core);
191 BSONCXX_INLINE key_context<array_context> wrap_document() {
192 return key_context<array_context>(_core);
200 BSONCXX_INLINE_NAMESPACE_END
203 #include <bsoncxx/config/postlude.hpp>
Definition: helpers.hpp:29
array::view view() const
Accessor that provides a view of the wrapped concatenate array.
Definition: concatenate.hpp:85
A low-level interface for constructing BSON documents and arrays.
Definition: core.hpp:42
A read-only BSON array that owns its underlying buffer.
Definition: value.hpp:34
A stream context which expects any number of values.
Definition: array_context.hpp:52
Definition: helpers.hpp:69
Definition: helpers.hpp:49
A streaming interface for constructing a BSON array.
Definition: array.hpp:36
std::enable_if< !(util::is_functor< T, void(array_context<>)>::value||util::is_functor< T, void(single_context)>::value||std::is_same< typename std::remove_reference< T >::type, const finalize_type >::value), array_context >::type & operator<<(T &&t)
<< operator for accepting a real value and appending it to the core builder.
Definition: array_context.hpp:76
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.
array_context operator<<(concatenate_array array)
<< operator for concatenating another array.
Definition: array_context.hpp:140
array_context(core *core)
Create an array_context given a core builder.
Definition: array_context.hpp:60
void append(const types::b_double &value)
Append a BSON double.
void close_array()
Closes the current sub-array within this BSON datum.
Container to concatenate an array.
Definition: concatenate.hpp:62
array::value extract_array()
Transfer ownership of the underlying document to the caller.
base operator<<(const close_array_type)
<< operator for closing a subarray in the core builder.
Definition: array_context.hpp:162
void concatenate(const document::view &view)
Appends the keys from a BSON document into this BSON datum.
Definition: element.hpp:24
void open_document()
Opens a sub-document within this BSON datum.
Definition: helpers.hpp:59