Checking for defined non-null value
| 167 | |
| 168 | // Checking for defined non-null value |
| 169 | bool IsDefined() const noexcept { |
| 170 | return Type != JSON_UNDEFINED && Type != JSON_NULL; |
| 171 | } |
| 172 | |
| 173 | bool IsNull() const noexcept; |
| 174 | bool IsBoolean() const noexcept; |