overworked iterators

This commit is contained in:
Niels
2015-02-22 17:52:27 +01:00
parent bc2e3a798d
commit d524e23204
5 changed files with 3277 additions and 1648 deletions
+8
View File
@@ -214,6 +214,14 @@ j.empty(); // false
j.type(); // json::value_t::array
j.clear(); // the array is empty again
// convenience type checkers
j.is_null();
j.is_boolean();
j.is_number();
j.is_object();
j.is_array();
j.is_string();
// comparison
j == "[\"foo\", 1, true]"_json; // true
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 344 KiB

+640 -174
View File
File diff suppressed because it is too large Load Diff
+640 -174
View File
File diff suppressed because it is too large Load Diff
+1989 -1300
View File
File diff suppressed because it is too large Load Diff