Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Alchemy
Mirrors
ModernJson
Commits
d524e232
Commit
d524e232
authored
Feb 22, 2015
by
Niels
Browse files
overworked iterators
parent
bc2e3a79
Changes
5
Expand all
Hide whitespace changes
Inline
Side-by-side
README.md
View file @
d524e232
...
...
@@ -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
...
...
json.gif
0 → 100644
View file @
d524e232
344 KB
src/json.hpp
View file @
d524e232
This diff is collapsed.
Click to expand it.
src/json.hpp.re2c
View file @
d524e232
This diff is collapsed.
Click to expand it.
test/unit.cpp
View file @
d524e232
This diff is collapsed.
Click to expand it.
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment