diff --git a/md_doc_basics.html b/md_doc_basics.html index c99ec0611..f4a0fa3b2 100644 --- a/md_doc_basics.html +++ b/md_doc_basics.html @@ -239,7 +239,7 @@ Using the Parsed JSON
The simdjson library makes generous use of std::string_view instances. If you are unfamiliar with std::string_view in C++, make sure to read the section on std::string_view.
The simdjson library makes generous use of std::string_view instances. If you are unfamiliar with std::string_view in C++, make sure to read the section on std::string_view. They behave much like an immutable std::string but they require no memory allocation. You can create a std::string instance from an std::string_view when you need it.
The following specific instructions indicate how to use the JSON when exceptions are enabled, but simdjson has full, idiomatic support for users who avoid exceptions. See the simdjson error handling documentation for more.
iterate, the document is quickly indexed. If it is not a valid Unicode (UTF-8) string or if there is an unclosed string, an error may be reported right away. However, it is not fully validated. On Demand only fully validates the values you use and the structure leading to it.The previous example had an array of objects, but we can use essentially the same approach with an object of objects.
+The following example illustrates how you may also iterate through object values, effectively visiting all key-value pairs in the object.