-
-
Notifications
You must be signed in to change notification settings - Fork 6.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'feature/iterator_range_parsing' into develop
- Loading branch information
Showing
18 changed files
with
1,074 additions
and
497 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
#include <json.hpp> | ||
|
||
using json = nlohmann::json; | ||
|
||
int main() | ||
{ | ||
// a JSON text | ||
char text[] = R"( | ||
{ | ||
"Image": { | ||
"Width": 800, | ||
"Height": 600, | ||
"Title": "View from 15th Floor", | ||
"Thumbnail": { | ||
"Url": "http://www.example.com/image/481989943", | ||
"Height": 125, | ||
"Width": 100 | ||
}, | ||
"Animated" : false, | ||
"IDs": [116, 943, 234, 38793] | ||
} | ||
} | ||
)"; | ||
|
||
// parse and serialize JSON | ||
json j_complete = json::parse(text); | ||
std::cout << std::setw(4) << j_complete << "\n\n"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<a target="_blank" href="http://melpon.org/wandbox/permlink/CwZnqGqte14SYJ5s"><b>online</b></a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
{ | ||
"Image": { | ||
"Animated": false, | ||
"Height": 600, | ||
"IDs": [ | ||
116, | ||
943, | ||
234, | ||
38793 | ||
], | ||
"Thumbnail": { | ||
"Height": 125, | ||
"Url": "http://www.example.com/image/481989943", | ||
"Width": 100 | ||
}, | ||
"Title": "View from 15th Floor", | ||
"Width": 800 | ||
} | ||
} | ||
|
13 changes: 13 additions & 0 deletions
13
doc/examples/parse__contiguouscontainer__parser_callback_t.cpp
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#include <json.hpp> | ||
|
||
using json = nlohmann::json; | ||
|
||
int main() | ||
{ | ||
// a JSON text given as std::vector | ||
std::vector<uint8_t> text = {'[', '1', ',', '2', ',', '3', ']', '\0'}; | ||
|
||
// parse and serialize JSON | ||
json j_complete = json::parse(text); | ||
std::cout << std::setw(4) << j_complete << "\n\n"; | ||
} |
1 change: 1 addition & 0 deletions
1
doc/examples/parse__contiguouscontainer__parser_callback_t.link
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<a target="_blank" href="http://melpon.org/wandbox/permlink/F8VaVFyys87qQRt5"><b>online</b></a> |
6 changes: 6 additions & 0 deletions
6
doc/examples/parse__contiguouscontainer__parser_callback_t.output
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
1, | ||
2, | ||
3 | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#include <json.hpp> | ||
|
||
using json = nlohmann::json; | ||
|
||
int main() | ||
{ | ||
// a JSON text given as std::vector | ||
std::vector<uint8_t> text = {'[', '1', ',', '2', ',', '3', ']', '\0'}; | ||
|
||
// parse and serialize JSON | ||
json j_complete = json::parse(text.begin(), text.end()); | ||
std::cout << std::setw(4) << j_complete << "\n\n"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
<a target="_blank" href="http://melpon.org/wandbox/permlink/ojh4Eeol4G9RgeRV"><b>online</b></a> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[ | ||
1, | ||
2, | ||
3 | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
<a target="_blank" href="http://melpon.org/wandbox/permlink/SrKpkE9ivmvd2OUy"><b>online</b></a> | ||
<a target="_blank" href="http://melpon.org/wandbox/permlink/n888UNQlMFduURhE"><b>online</b></a> |
Oops, something went wrong.