Subject: Re: [boost] request for comments in a new format library
From: Frédéric (ufospoke_at_[hidden])
Date: 2018-02-28 08:04:56


Hi,

Why did you choose this syntax:

strf::write_to(output) [assembly_string] = {name, age};

and not

strf::write_to(output, assembly_string, {name, age});
or
strf::write_to(output, assembly_string, name, age);

F