grapland

Results 12 comments of grapland

a new parsing options can be added as ```cpp auto opt = boost::json::parse_options{ .numbers = boost::json::number_precision::as_literal, }; ``` with this, instead parsing numbers to double or int64s, the raw string...

> Ok, so you just want a way to make parser create a json::string instead of a number. This can resolve the problem for me. Serialization is OK for now...