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 171 json issues
Sort by recently updated
recently updated
newest added

Fix #700 This implementation makes these choices: 1. Nulls are replaced when creating intermediaries. 2. When creating intermediaries segments are always treated as object keys, (that is only objects are...

Hello, Does it support simple json conversion from `std::optional` for instance ? When I test I get some errors. Thanks

I'm starting to implement some serialization tools with Boost.Json but I've got some precision issues with double values. To demonstrate this "potential" issue, you will find hereafter a code snippet...

Bug

Implementing `value_to` for `variant` (for one possible representation) involves repeatedly trying `value_to` for each alternative. Since `value_to` reports failures via exceptions, this will be _slow_. It would be better if...

Currently trying out the new JSON pointer implementation and I think this would be very useful in many cases. One thing I have needed is inserting or assigning arbitrary JSON...

Apparently C math constants are missing in C++ mode on some obscure platforms

Similar to #549, but in the other direction; it should be possible to add `value_to` support without including a Boost.JSON header. A minimal example is in https://godbolt.org/z/WsG33GrMP. Unlike the `value_from`...

API