Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cleanup of from JSON, Container concept #297

Merged
merged 7 commits into from
Jun 16, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/cookbook/mapping_deduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ the `json_link<Name, Type>` mapping type. The order of deduction is as follows
| Enum |json_number |Used std::is_enum and std::underlying_type
| Floating point |json_number |Uses std::numeric_limits
| Associative Container |json_key_value_map|Has begin()/end()/key_type/mapped_type and constructable with two iterators
| readable values | |The value_type in the readable mapping of T with the Nullable option set to JsonNullDefault. See the readable value cookbook item
| readable values | |The value_type in the readable mapping of T with a json_null wrapped around T's deduced mapping. See the readable value cookbook item
| Containers |json_array |Excluding associative containers. Uses value_type as the type for each element

* Containers - map to json_array with the element type as the detected type of the value_type. Must have the methods
Expand Down
230 changes: 0 additions & 230 deletions include/daw/daw_readable_value.h

This file was deleted.

159 changes: 0 additions & 159 deletions include/daw/daw_readable_value_fwd.h

This file was deleted.

Loading