| 114 | Type type() const; |
| 115 | |
| 116 | bool is_null() const { return type() == NUL; } |
| 117 | bool is_number() const { return type() == NUMBER; } |
| 118 | bool is_bool() const { return type() == BOOL; } |
| 119 | bool is_string() const { return type() == STRING; } |
no test coverage detected