Functions for getting primitives from the JSON object.
| 322 | |
| 323 | /// Functions for getting primitives from the JSON object. |
| 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 { |