You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Name of mapping : TBD
Purpose: To provide a json_value like structure over the unmapped members in a class. Because we know the mapped members and their locations, that location_info structure can be used as a filter list and is of fixed size.
example usage:
{
"a": 1,
"b": 2,
"c": 3
}
With a mapping like
using type = json_member_list<json_link<"b", int>, json_catch_all>;
Would require a class that is constructible from an int, json_catch_all_value<1>
The 1 is because the size of the filter list is 1 element.
The text was updated successfully, but these errors were encountered:
Name of mapping : TBD
Purpose: To provide a json_value like structure over the unmapped members in a class. Because we know the mapped members and their locations, that location_info structure can be used as a filter list and is of fixed size.
example usage:
With a mapping like
Would require a class that is constructible from an
int, json_catch_all_value<1>
The 1 is because the size of the filter list is 1 element.
The text was updated successfully, but these errors were encountered: