Skip to content

Commit b0c37e5

Browse files
committed
Update README.md
1 parent 359b945 commit b0c37e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ std::atomic <T> | What T would produce. | Caution! Obviously calls load().
121121
std::bitset | [1, 0, ...] |
122122
std::string | "..." |
123123
fundamental types | themselves |
124-
std::initializer_list | [...] | Or if names are provided {"name1":..., "name2":...}.
125124
JSON::IteratorRange <STL_IteratorT> | [...] |
126125
std::map &lt;T, U> | [[T1, U1], [T2, U2], ...] | General case
127126
std::map &lt;std::string, T> | {"key": "value", "key2": "value2", ...} | Specialization
@@ -134,6 +133,7 @@ std::unique_ptr &lt;T> | What T would produce. | Throws if invalid.
134133
std::weak_ptr &lt;T> | What T would produce | Throws if invalid.
135134
std::tuple | {"_1": ..., "_2": ..., ...} |
136135
std::valarray &lt;T> | [...] |
136+
boost::optional <T> | T or nothing | Very useful for making things optional... ofc
137137
138138
## Reference
139139
Please visit the wiki: [Wiki](https://github.com/5cript/SimpleJSON/wiki)

0 commit comments

Comments
 (0)