MongoDB C++ Driver mongocxx-3.10.1
Loading...
Searching...
No Matches
Public Member Functions | List of all members
bsoncxx::v_noabi::builder::basic::array Class Reference

A traditional builder-style interface for constructing a BSON array. More...

#include <array.hpp>

+ Inheritance diagram for bsoncxx::v_noabi::builder::basic::array:

Public Member Functions

 array ()
 Default constructor.
 
 array (array &&arr) noexcept
 Move constructor.
 
arrayoperator= (array &&arr) noexcept
 Move assignment operator.
 
bsoncxx::v_noabi::array::view view () const
 
 operator bsoncxx::v_noabi::array::view () const
 Conversion operator that provides a view of the current builder contents.
 
bsoncxx::v_noabi::array::value extract ()
 Transfer ownership of the underlying array to the caller.
 
void clear ()
 Reset the underlying BSON to an empty array.
 
- Public Member Functions inherited from bsoncxx::v_noabi::builder::basic::sub_array
 sub_array (core *core)
 Default constructor.
 
template<typename Arg , typename... Args>
void append (Arg &&a, Args &&... args)
 Appends multiple BSON values.
 
void append ()
 Inductive base-case for the variadic append(...)
 

Detailed Description

A traditional builder-style interface for constructing a BSON array.

Member Function Documentation

◆ extract()

bsoncxx::v_noabi::array::value bsoncxx::v_noabi::builder::basic::array::extract ( )
inline

Transfer ownership of the underlying array to the caller.

Returns
An array::value with ownership of the array.
Warning
After calling extract() it is illegal to call any methods on this class, unless it is subsequenly moved into.

◆ operator bsoncxx::v_noabi::array::view()

bsoncxx::v_noabi::builder::basic::array::operator bsoncxx::v_noabi::array::view ( ) const
inline

Conversion operator that provides a view of the current builder contents.

Returns
A view of the current builder contents.

◆ view()

bsoncxx::v_noabi::array::view bsoncxx::v_noabi::builder::basic::array::view ( ) const
inline
Returns
A view of the BSON array.

The documentation for this class was generated from the following file: