value::is_null

Returns true if this is a null.

Synopsis

bool
is_null() const noexcept;

Description

This function is used to determine if the underlying representation is a certain kind.

Effects

return this->kind() == kind::null;

Complexity

Constant.

Exception Safety

No-throw guarantee.