30 Nov
2019
30 Nov
'19
6:35 p.m.
On Sat, Nov 30, 2019 at 10:29 AM Bjorn Reese via Boost
If the user deserializes the input into a std::map then the data will become ordered. The user can deserialize into another container if they wish to retain the unordered nature of the data.
So if I want to go from a JSON archive to my user-defined struct T, using Boost.Serialization, then the path is from JSON to a map/unordered_map, and then to T? Thanks