#include <bsoncxx/v1/types/view.hpp>
BSON type value "64-bit Binary Floating Point".
Public Member Functions | |
| b_double ()=default | |
| Zero-initialize the represented value. | |
| b_double (double value) | |
| Initialize with value. | |
| operator double () const | |
| Implicitly convert to value. | |
Public Attributes | |
| double | value = {} |
| The represented value. | |
Static Public Attributes | |
| static constexpr id | type_id = id::k_double |
| The type represented by this BSON type value. | |
Friends | |
| bool | operator!= (b_double const &lhs, b_double const &rhs) |
| Equivalent to !(lhs == rhs). | |
| bool | operator== (b_double const &lhs, b_double const &rhs) |
| Equivalent to lhs.value == rhs.value. | |
|
default |
Zero-initialize the represented value.
|
inlineexplicit |
Initialize with value.
|
inline |
Implicitly convert to value.
Equivalent to lhs.value == rhs.value.
|
staticconstexpr |
The type represented by this BSON type value.
| double bsoncxx::v1::types::b_double::value = {} |
The represented value.