#include <bsoncxx/v1/types/view.hpp>
BSON type value "UTF-8 String".
Public Member Functions | |
| b_string ()=default | |
| Zero-initialize the represented value. | |
| b_string (v1::stdx::string_view value) | |
| Initialize with value. | |
| operator v1::stdx::string_view () const | |
| Implicitly convert to value. | |
Public Attributes | |
| v1::stdx::string_view | value |
| The represented value. | |
Static Public Attributes | |
| static constexpr id | type_id = id::k_string |
| The type represented by this BSON type value. | |
Friends | |
| bool | operator!= (b_string const &lhs, b_string const &rhs) |
| Equivalent to !(lhs == rhs). | |
| bool | operator== (b_string const &lhs, b_string 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.
| v1::stdx::string_view bsoncxx::v1::types::b_string::value |
The represented value.