! @brief create an empty value with a given type Create an empty JSON value with a given type. The value will be default initialized with an empty value which depends on the type: Value type | initial value ----------- | ------------- null | `null` boolean | `false` string | `""` number | `0` ob
| 17827 | @since version 1.0.0 |
| 17828 | */ |
| 17829 | basic_json(const value_t v) |
| 17830 | : m_type(v), m_value(v) |
| 17831 | { |
| 17832 | assert_invariant(); |
| 17833 | } |
| 17834 | |
| 17835 | /*! |
| 17836 | @brief create a null object |
no test coverage detected