Commit e951d198 by Niels Lohmann Committed by GitHub

🔀 merge pull request #430 from vjon/patch-1

Fix documentation error
parents bae8e701 046f6da8
......@@ -263,6 +263,9 @@ const std::string tmp = j[0];
j[1] = 42;
bool foo = j.at(2);
// comparison
j == "[\"foo\", 1, true]"_json; // true
// other stuff
j.size(); // 3 entries
j.empty(); // false
......@@ -277,9 +280,6 @@ j.is_object();
j.is_array();
j.is_string();
// comparison
j == "[\"foo\", 1, true]"_json; // true
// create an object
json o;
o["foo"] = 23;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment