| 324 | bool is_null() const { return internal.Type == Class::Null; } |
| 325 | |
| 326 | std::string to_string() const { bool b; return to_string( b ); } |
| 327 | std::string to_string( bool &ok ) const { |
| 328 | ok = (internal.Type == Class::String); |
| 329 | return ok ? *internal.String : std::string(""); |
no test coverage detected