MongoDB C++ Driver
mongocxx-3.7.0
|
17 #include <bsoncxx/array/value.hpp>
18 #include <bsoncxx/array/view.hpp>
19 #include <bsoncxx/builder/basic/impl.hpp>
20 #include <bsoncxx/builder/basic/kvp.hpp>
21 #include <bsoncxx/builder/basic/sub_array.hpp>
22 #include <bsoncxx/builder/core.hpp>
24 #include <bsoncxx/config/prelude.hpp>
27 BSONCXX_INLINE_NAMESPACE_BEGIN
51 _core = std::move(arr._core);
106 template <
typename... Args>
109 array.append(std::forward<Args>(args)...);
111 return array.extract();
116 BSONCXX_INLINE_NAMESPACE_END
119 #include <bsoncxx/config/postlude.hpp>
array()
Default constructor.
Definition: array.hpp:40
void clear()
Deletes the contents of the underlying BSON datum.
Top level namespace for MongoDB C++ BSON functionality.
Definition: element.hpp:24
sub_array(core *core)
Default constructor.
Definition: sub_array.hpp:44
A read-only, non-owning view of a BSON document.
Definition: view.hpp:40
array & operator=(array &&arr) noexcept
Move assignment operator.
Definition: array.hpp:50
bsoncxx::array::value extract()
Transfer ownership of the underlying array to the caller.
Definition: array.hpp:81
void clear()
Reset the underlying BSON to an empty array.
Definition: array.hpp:88
A read-only BSON array that owns its underlying buffer.
Definition: value.hpp:34
A low-level interface for constructing BSON documents and arrays.
Definition: core.hpp:42
A traditional builder-style interface for constructing a BSON array.
Definition: array.hpp:35
bsoncxx::array::view view() const
Definition: array.hpp:58
An internal class of builder::basic.
Definition: sub_array.hpp:39
array(array &&arr) noexcept
Move constructor.
Definition: array.hpp:45
A JSON-like builder for creating arrays.
Definition: list.hpp:166
array::value extract_array()
Transfers ownership of the underlying document to the caller.
array::view view_array() const
Gets a view over the array.