MongoDB C++ Driver 4.1.4
Loading...
Searching...
No Matches
bsoncxx::v_noabi::types::bson_value::view Class Reference

#include <bsoncxx/v_noabi/bsoncxx/types/bson_value/view.hpp>

Description

A non-owning variant that can contain any BSON type.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

Public Member Functions

 view () noexcept
 Default constructs a bson_value::view. The resulting view will be initialized to point at a bson_value of type k_null.
b_array const & get_array () const
 Returns the underlying BSON array value.
b_binary const & get_binary () const
 Returns the underlying BSON binary data value.
b_bool const & get_bool () const
 Returns the underlying BSON boolean value.
b_code const & get_code () const
 Returns the underlying BSON JavaScript code value.
b_codewscope const & get_codewscope () const
 Returns the underlying BSON JavaScript code with scope value.
b_date const & get_date () const
 Returns the underlying BSON date value.
b_dbpointer const & get_dbpointer () const
 Returns the underlying BSON DBPointer value.
b_decimal128 const & get_decimal128 () const
 Returns the underlying BSON Decimal128 value.
b_document const & get_document () const
 Returns the underlying BSON document value.
b_double const & get_double () const
 Returns the underlying BSON double value.
b_int32 const & get_int32 () const
 Returns the underlying BSON 32-bit signed integer value.
b_int64 const & get_int64 () const
 Returns the underlying BSON 64-bit signed integer value.
b_maxkey const & get_maxkey () const
 Returns the underlying BSON max-key value.
b_minkey const & get_minkey () const
 Returns the underlying BSON min-key value.
b_null const & get_null () const
 Returns the underlying BSON null value.
b_oid const & get_oid () const
 Returns the underlying BSON ObjectId value.
b_regex const & get_regex () const
 Returns the underlying BSON regex value.
b_string const & get_string () const
 Returns the underlying BSON UTF-8 string value.
b_symbol const & get_symbol () const
 Returns the underlying BSON symbol value.
b_timestamp const & get_timestamp () const
 Returns the underlying BSON replication timestamp value.
b_undefined const & get_undefined () const
 Returns the underlying BSON undefined value.
bsoncxx::v_noabi::type type () const
 Returns the type of the underlying BSON value stored in this object.
 view (b_double v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_string v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_document v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_array v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_binary v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_undefined v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_oid v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_bool v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_date v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_null v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_regex v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_dbpointer v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_code v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_symbol v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_codewscope v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_int32 v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_timestamp v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_int64 v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_decimal128 v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_maxkey v) noexcept
 Construct a bson_value::view from the provided BSON type.
 view (b_minkey v) noexcept
 Construct a bson_value::view from the provided BSON type.

(Note that these are not member symbols.)

bool operator== (bson_value::view const &, bson_value::view const &)
 Compare two bson_value::views for equality.
bool operator!= (bson_value::view const &, bson_value::view const &)
 Compare two bson_value::views for equality.
template<typename T>
detail::requires_t< bool, detail::is_bson_view_compatible< T > > operator== (bson_value::view const &lhs, T &&rhs)
 Compares a view with a type representable as a view.
template<typename T>
detail::requires_t< bool, detail::is_bson_view_compatible< T > > operator== (T &&lhs, bson_value::view const &rhs)
 Compares a view with a type representable as a view.
template<typename T>
detail::requires_t< bool, detail::is_bson_view_compatible< T > > operator!= (bson_value::view const &lhs, T &&rhs)
 Compares a view with a type representable as a view.
template<typename T>
detail::requires_t< bool, detail::is_bson_view_compatible< T > > operator!= (T &&lhs, bson_value::view const &rhs)
 Compares a view with a type representable as a view.

Constructor & Destructor Documentation

◆ view() [1/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_double v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [2/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_string v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [3/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_document v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [4/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_array v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [5/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_binary v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [6/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_undefined v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [7/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_oid v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [8/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_bool v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [9/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_date v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [10/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_null v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [11/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_regex v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [12/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_dbpointer v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [13/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_code v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [14/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_symbol v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [15/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_codewscope v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [16/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_int32 v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [17/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_timestamp v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [18/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_int64 v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [19/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_decimal128 v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [20/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_maxkey v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [21/22]

bsoncxx::v_noabi::types::bson_value::view::view ( b_minkey v)
explicitnoexcept

Construct a bson_value::view from the provided BSON type.

◆ view() [22/22]

bsoncxx::v_noabi::types::bson_value::view::view ( )
noexcept

Default constructs a bson_value::view. The resulting view will be initialized to point at a bson_value of type k_null.

Member Function Documentation

◆ get_array()

b_array const & bsoncxx::v_noabi::types::bson_value::view::get_array ( ) const

Returns the underlying BSON array value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_binary()

b_binary const & bsoncxx::v_noabi::types::bson_value::view::get_binary ( ) const

Returns the underlying BSON binary data value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_bool()

b_bool const & bsoncxx::v_noabi::types::bson_value::view::get_bool ( ) const

Returns the underlying BSON boolean value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_code()

b_code const & bsoncxx::v_noabi::types::bson_value::view::get_code ( ) const

Returns the underlying BSON JavaScript code value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_codewscope()

b_codewscope const & bsoncxx::v_noabi::types::bson_value::view::get_codewscope ( ) const

Returns the underlying BSON JavaScript code with scope value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_date()

b_date const & bsoncxx::v_noabi::types::bson_value::view::get_date ( ) const

Returns the underlying BSON date value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_dbpointer()

b_dbpointer const & bsoncxx::v_noabi::types::bson_value::view::get_dbpointer ( ) const

Returns the underlying BSON DBPointer value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_decimal128()

b_decimal128 const & bsoncxx::v_noabi::types::bson_value::view::get_decimal128 ( ) const

Returns the underlying BSON Decimal128 value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_document()

b_document const & bsoncxx::v_noabi::types::bson_value::view::get_document ( ) const

Returns the underlying BSON document value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_double()

b_double const & bsoncxx::v_noabi::types::bson_value::view::get_double ( ) const

Returns the underlying BSON double value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_int32()

b_int32 const & bsoncxx::v_noabi::types::bson_value::view::get_int32 ( ) const

Returns the underlying BSON 32-bit signed integer value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_int64()

b_int64 const & bsoncxx::v_noabi::types::bson_value::view::get_int64 ( ) const

Returns the underlying BSON 64-bit signed integer value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_maxkey()

b_maxkey const & bsoncxx::v_noabi::types::bson_value::view::get_maxkey ( ) const

Returns the underlying BSON max-key value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_minkey()

b_minkey const & bsoncxx::v_noabi::types::bson_value::view::get_minkey ( ) const

Returns the underlying BSON min-key value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_null()

b_null const & bsoncxx::v_noabi::types::bson_value::view::get_null ( ) const

Returns the underlying BSON null value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_oid()

b_oid const & bsoncxx::v_noabi::types::bson_value::view::get_oid ( ) const

Returns the underlying BSON ObjectId value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_regex()

b_regex const & bsoncxx::v_noabi::types::bson_value::view::get_regex ( ) const

Returns the underlying BSON regex value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_string()

b_string const & bsoncxx::v_noabi::types::bson_value::view::get_string ( ) const

Returns the underlying BSON UTF-8 string value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_symbol()

b_symbol const & bsoncxx::v_noabi::types::bson_value::view::get_symbol ( ) const

Returns the underlying BSON symbol value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_timestamp()

b_timestamp const & bsoncxx::v_noabi::types::bson_value::view::get_timestamp ( ) const

Returns the underlying BSON replication timestamp value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ get_undefined()

b_undefined const & bsoncxx::v_noabi::types::bson_value::view::get_undefined ( ) const

Returns the underlying BSON undefined value.

Warning
Calling the wrong get_<type> method will cause an exception to be thrown.

◆ type()

bsoncxx::v_noabi::type bsoncxx::v_noabi::types::bson_value::view::type ( ) const

Returns the type of the underlying BSON value stored in this object.

◆ operator!= [1/3]

bool operator!= ( bson_value::view const & ,
bson_value::view const &  )
friend

Compare two bson_value::views for equality.

◆ operator!=() [2/3]

template<typename T>
detail::requires_t< bool, detail::is_bson_view_compatible< T > > operator!= ( bson_value::view const & lhs,
T && rhs )
related

Compares a view with a type representable as a view.

Constraints

◆ operator!=() [3/3]

template<typename T>
detail::requires_t< bool, detail::is_bson_view_compatible< T > > operator!= ( T && lhs,
bson_value::view const & rhs )
related

Compares a view with a type representable as a view.

Constraints

◆ operator== [1/3]

bool operator== ( bson_value::view const & ,
bson_value::view const &  )
friend

Compare two bson_value::views for equality.

◆ operator==() [2/3]

template<typename T>
detail::requires_t< bool, detail::is_bson_view_compatible< T > > operator== ( bson_value::view const & lhs,
T && rhs )
related

Compares a view with a type representable as a view.

Constraints

◆ operator==() [3/3]

template<typename T>
detail::requires_t< bool, detail::is_bson_view_compatible< T > > operator== ( T && lhs,
bson_value::view const & rhs )
related

Compares a view with a type representable as a view.

Constraints

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