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