| 276 | value & operator=(null_t); |
| 277 | |
| 278 | value_kind kind() const noexcept |
| 279 | { |
| 280 | auto k = storage_.local_.kind_; |
| 281 | if (k == remote_string_k) |
| 282 | return value_kind::string; |
| 283 | return static_cast<value_kind>(k); |
| 284 | } |
| 285 | |
| 286 | bool is_null() const noexcept { return kind() == value_kind::null; } |
| 287 | bool is_boolean() const noexcept |
no outgoing calls
no test coverage detected