$include_dir="/home/hyper-archives/boost/include"; include("$include_dir/msg-header.inc") ?>
From: Vinnie Falco (vinnie.falco_at_[hidden])
Date: 2019-11-30 18:35:27
On Sat, Nov 30, 2019 at 10:29 AM Bjorn Reese via Boost
<boost_at_[hidden]> wrote:
> 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