json icon indicating copy to clipboard operation
json copied to clipboard

A C++11 library for parsing and serializing JSON to and from a DOM container in memory.

Results 216 json issues
Sort by recently updated
recently updated
newest added

Json could have a binary/blob type that can story raw memory and must/should have a conversion operator to a data type that can be represented as json. If optional that...

Would be great if you could serialize/deserialize to/from a `json` object.

Doc

Can the output from `value_from` be indented to make reading output easier? ```cpp std::cout

There is only issue about parsing here: https://github.com/boostorg/json/issues/627 But the generating is also actual question and it is also could potentially gain a lot of performance. E.g. ``` template void...

Now that Boost.URL is in the superproject we can use its testing framework and eliminate the older, redundant copy of the one in JSON: https://github.com/boostorg/url/tree/develop/extra

Currently, `boost::json::serialize(x)` works when `x` is one of `json::value`, `json::array`, `json::object`, `json::string`, and `string_view`. It would be natural to extend it to work for other types. Supporting `nullptr_t` and `bool`...

This is for inserting values at any position in the object preserving order of all elements (at the cost of linear complexity). Part 2/2 of https://github.com/boostorg/json/issues/748. This does not have...

PLEASE DON'T FORGET TO "STAR" THIS REPOSITORY :) When reporting a bug please include the following: ### Version of Boost You can find the version number in the file ``...

What is the best way to achieve backward compatibility with boost json? My data structures has changed, but I still need to interact with json data generated by previous versions...