daw_json_link icon indicating copy to clipboard operation
daw_json_link copied to clipboard

Investigate parsing sub-members as member

Open beached opened this issue 2 years ago • 0 comments

Investigate allowing the parsing of submembers. e.g

{ "a": { "b": 5 } }

The transformation would be potentially lossy

Possible mapping syntax

json_submember<"a", "b", json_number_no_name<int>>

Where "b" can use the path syntax, e.g "b.c" would mean a class like

{ "a": { "b": { "c": 5 } } }

beached avatar Jun 17 '22 17:06 beached