unsafe_is_equal()
: simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string
diff --git a/generic_2dom__parser__implementation_8h_source.html b/generic_2dom__parser__implementation_8h_source.html
index 7c27f5e65..863032aa2 100644
--- a/generic_2dom__parser__implementation_8h_source.html
+++ b/generic_2dom__parser__implementation_8h_source.html
@@ -123,50 +123,51 @@ $(document).ready(function(){initNavTree('generic_2dom__parser__implementation_8
36 simdjson_warn_unused
error_code stage2(dom::document &
doc) noexcept final;
37 simdjson_warn_unused
error_code stage2_next(dom::document &
doc) noexcept final;
- 38 simdjson_warn_unused uint8_t *parse_string(const uint8_t *src, uint8_t *dst) const noexcept final;
- 39 inline simdjson_warn_unused
error_code set_capacity(
size_t capacity) noexcept final;
- 40 inline simdjson_warn_unused
error_code set_max_depth(
size_t max_depth) noexcept final;
-
- 42 simdjson_inline simdjson_warn_unused
error_code set_capacity_stage1(
size_t capacity);
-
-
-
-
-
-
-
- 50 namespace SIMDJSON_IMPLEMENTATION {
-
- 52 inline dom_parser_implementation::dom_parser_implementation() noexcept = default;
-
-
-
-
-
-
-
- 60 size_t max_structures = SIMDJSON_ROUNDUP_N(capacity, 64) + 2 + 7;
- 61 structural_indexes.reset(
new (std::nothrow) uint32_t[max_structures] );
- 62 if (!structural_indexes) { _capacity = 0;
return MEMALLOC; }
- 63 structural_indexes[0] = 0;
- 64 n_structural_indexes = 0;
-
-
-
-
-
- 70 inline simdjson_warn_unused
error_code dom_parser_implementation::set_max_depth(
size_t max_depth) noexcept {
-
-
- 73 is_array.reset(
new (std::nothrow)
bool[max_depth]);
-
-
- 76 _max_depth = max_depth;
-
-
-
-
-
+ 38 simdjson_warn_unused uint8_t *parse_string(const uint8_t *src, uint8_t *dst,
bool allow_replacement) const noexcept final;
+ 39 simdjson_warn_unused uint8_t *parse_wobbly_string(const uint8_t *src, uint8_t *dst) const noexcept final;
+ 40 inline simdjson_warn_unused
error_code set_capacity(
size_t capacity) noexcept final;
+ 41 inline simdjson_warn_unused
error_code set_max_depth(
size_t max_depth) noexcept final;
+
+ 43 simdjson_inline simdjson_warn_unused
error_code set_capacity_stage1(
size_t capacity);
+
+
+
+
+
+
+
+ 51 namespace SIMDJSON_IMPLEMENTATION {
+
+ 53 inline dom_parser_implementation::dom_parser_implementation() noexcept = default;
+
+
+
+
+
+
+
+ 61 size_t max_structures = SIMDJSON_ROUNDUP_N(capacity, 64) + 2 + 7;
+ 62 structural_indexes.reset(
new (std::nothrow) uint32_t[max_structures] );
+ 63 if (!structural_indexes) { _capacity = 0;
return MEMALLOC; }
+ 64 structural_indexes[0] = 0;
+ 65 n_structural_indexes = 0;
+
+
+
+
+
+ 71 inline simdjson_warn_unused
error_code dom_parser_implementation::set_max_depth(
size_t max_depth) noexcept {
+
+
+ 74 is_array.reset(
new (std::nothrow)
bool[max_depth]);
+
+
+ 77 _max_depth = max_depth;
+
+
+
+
+
size_t len
Length passed to stage 1.
dom::document * doc
Document passed to stage 2.
diff --git a/generic_2ondemand_2array_8h_source.html b/generic_2ondemand_2array_8h_source.html
index 2c139e1da..0ff22c1f1 100644
--- a/generic_2ondemand_2array_8h_source.html
+++ b/generic_2ondemand_2array_8h_source.html
@@ -176,7 +176,7 @@ $(document).ready(function(){initNavTree('generic_2ondemand_2array_8h_source.htm
error_code
All possible errors returned by simdjson.
The result of a simdjson operation that could fail.
-
+
The result of a simdjson operation that could fail.
simdjson_inline error_code error() const noexcept
The error.
simdjson_inline T & value() &noexcept(false)
Get the result value.
diff --git a/generic_2ondemand_2document-inl_8h_source.html b/generic_2ondemand_2document-inl_8h_source.html
index 03b8b1c2a..11486a323 100644
--- a/generic_2ondemand_2document-inl_8h_source.html
+++ b/generic_2ondemand_2document-inl_8h_source.html
@@ -179,709 +179,722 @@ $(document).ready(function(){initNavTree('generic_2ondemand_2document-inl_8h_sou
95 return get_root_value_iterator().get_root_double_in_string(
true);
-
- 98 return get_root_value_iterator().get_root_string(
true);
+
+ 98 return get_root_value_iterator().get_root_string(
true, allow_replacement);
-
- 101 return get_root_value_iterator().get_root_raw_json_string(
true);
+
+ 101 return get_root_value_iterator().get_root_wobbly_string(
true);
-
- 104 return get_root_value_iterator().get_root_bool(
true);
+
+ 104 return get_root_value_iterator().get_root_raw_json_string(
true);
-
- 107 return get_root_value_iterator().is_root_null(
true);
+
+ 107 return get_root_value_iterator().get_root_bool(
true);
-
-
-
-
- 113 template<> simdjson_inline simdjson_result<std::string_view>
document::get() & noexcept {
return get_string(); }
- 114 template<> simdjson_inline simdjson_result<double>
document::get() & noexcept {
return get_double(); }
- 115 template<> simdjson_inline simdjson_result<uint64_t>
document::get() & noexcept {
return get_uint64(); }
- 116 template<> simdjson_inline simdjson_result<int64_t>
document::get() & noexcept {
return get_int64(); }
- 117 template<> simdjson_inline simdjson_result<bool>
document::get() & noexcept {
return get_bool(); }
- 118 template<> simdjson_inline simdjson_result<value>
document::get() & noexcept {
return get_value(); }
-
- 120 template<> simdjson_inline simdjson_result<raw_json_string>
document::get() && noexcept {
return get_raw_json_string(); }
- 121 template<> simdjson_inline simdjson_result<std::string_view>
document::get() && noexcept {
return get_string(); }
- 122 template<> simdjson_inline simdjson_result<double>
document::get() && noexcept {
return std::forward<document>(*this).get_double(); }
- 123 template<> simdjson_inline simdjson_result<uint64_t>
document::get() && noexcept {
return std::forward<document>(*this).get_uint64(); }
- 124 template<> simdjson_inline simdjson_result<int64_t>
document::get() && noexcept {
return std::forward<document>(*this).get_int64(); }
- 125 template<> simdjson_inline simdjson_result<bool>
document::get() && noexcept {
return std::forward<document>(*this).get_bool(); }
- 126 template<> simdjson_inline simdjson_result<value>
document::get() && noexcept {
return get_value(); }
-
-
- 129 return get<T>().get(out);
-
-
- 132 return std::forward<document>(*this).get<T>().get(out);
+
+ 110 return get_root_value_iterator().is_root_null(
true);
+
+
+
+
+
+ 116 template<> simdjson_inline simdjson_result<std::string_view>
document::get() & noexcept {
return get_string(
false); }
+ 117 template<> simdjson_inline simdjson_result<double>
document::get() & noexcept {
return get_double(); }
+ 118 template<> simdjson_inline simdjson_result<uint64_t>
document::get() & noexcept {
return get_uint64(); }
+ 119 template<> simdjson_inline simdjson_result<int64_t>
document::get() & noexcept {
return get_int64(); }
+ 120 template<> simdjson_inline simdjson_result<bool>
document::get() & noexcept {
return get_bool(); }
+ 121 template<> simdjson_inline simdjson_result<value>
document::get() & noexcept {
return get_value(); }
+
+ 123 template<> simdjson_inline simdjson_result<raw_json_string>
document::get() && noexcept {
return get_raw_json_string(); }
+ 124 template<> simdjson_inline simdjson_result<std::string_view>
document::get() && noexcept {
return get_string(
false); }
+ 125 template<> simdjson_inline simdjson_result<double>
document::get() && noexcept {
return std::forward<document>(*this).get_double(); }
+ 126 template<> simdjson_inline simdjson_result<uint64_t>
document::get() && noexcept {
return std::forward<document>(*this).get_uint64(); }
+ 127 template<> simdjson_inline simdjson_result<int64_t>
document::get() && noexcept {
return std::forward<document>(*this).get_int64(); }
+ 128 template<> simdjson_inline simdjson_result<bool>
document::get() && noexcept {
return std::forward<document>(*this).get_bool(); }
+ 129 template<> simdjson_inline simdjson_result<value>
document::get() && noexcept {
return get_value(); }
+
+
+ 132 return get<T>().get(out);
-
- 135 #if SIMDJSON_EXCEPTIONS
- 136 simdjson_inline document::operator
array() & noexcept(
false) {
return get_array(); }
- 137 simdjson_inline document::operator
object() & noexcept(
false) {
return get_object(); }
- 138 simdjson_inline document::operator uint64_t() noexcept(false) {
return get_uint64(); }
- 139 simdjson_inline document::operator int64_t() noexcept(false) {
return get_int64(); }
- 140 simdjson_inline document::operator double() noexcept(false) {
return get_double(); }
- 141 simdjson_inline document::operator std::string_view() noexcept(false) {
return get_string(); }
- 142 simdjson_inline document::operator
raw_json_string() noexcept(false) {
return get_raw_json_string(); }
- 143 simdjson_inline document::operator bool() noexcept(false) {
return get_bool(); }
- 144 simdjson_inline document::operator
value() noexcept(false) {
return get_value(); }
-
-
-
- 148 auto a = get_array();
-
-
-
-
-
-
- 155 auto a = get_object();
-
-
-
-
-
-
- 162 auto a = get_array();
-
-
-
- 166 return get_array().begin();
+
+ 135 return std::forward<document>(*this).get<T>().get(out);
+
+
+ 138 #if SIMDJSON_EXCEPTIONS
+ 139 simdjson_inline document::operator
array() & noexcept(
false) {
return get_array(); }
+ 140 simdjson_inline document::operator
object() & noexcept(
false) {
return get_object(); }
+ 141 simdjson_inline document::operator uint64_t() noexcept(false) {
return get_uint64(); }
+ 142 simdjson_inline document::operator int64_t() noexcept(false) {
return get_int64(); }
+ 143 simdjson_inline document::operator double() noexcept(false) {
return get_double(); }
+ 144 simdjson_inline document::operator std::string_view() noexcept(false) {
return get_string(
false); }
+ 145 simdjson_inline document::operator
raw_json_string() noexcept(false) {
return get_raw_json_string(); }
+ 146 simdjson_inline document::operator bool() noexcept(false) {
return get_bool(); }
+ 147 simdjson_inline document::operator
value() noexcept(false) {
return get_value(); }
+
+
+
+ 151 auto a = get_array();
+
+
+
+
+
+
+ 158 auto a = get_object();
+
+
+
+
+
+
+ 165 auto a = get_array();
+
-
-
+
+ 169 return get_array().begin();
-
-
- 173 return start_or_resume_object().find_field(key);
-
-
+
+
+
+
+
176 return start_or_resume_object().find_field(key);
-
- 179 return start_or_resume_object().find_field_unordered(key);
+
+ 179 return start_or_resume_object().find_field(key);
-
+
182 return start_or_resume_object().find_field_unordered(key);
-
- 185 return start_or_resume_object()[key];
+
+ 185 return start_or_resume_object().find_field_unordered(key);
-
+
188 return start_or_resume_object()[key];
-
-
- 192 auto error =
iter.skip_child(0);
- 193 if(error) {
iter.abandon(); }
-
-
-
-
- 198 auto _iter = get_root_value_iterator();
- 199 const uint8_t * starting_point{_iter.peek_start()};
-
- 201 if(error) {
return error; }
-
-
-
- 205 const uint8_t * final_point{
iter.unsafe_pointer()};
- 206 return std::string_view(
reinterpret_cast<const char*
>(starting_point),
size_t(final_point - starting_point));
-
-
-
- 210 return get_root_value_iterator().type();
-
-
-
-
- 215 auto error =
type().get(this_type);
- 216 if(error) {
return error; }
-
-
-
-
- 221 return get_root_value_iterator().is_root_negative();
-
-
-
- 225 return get_root_value_iterator().is_root_integer(
true);
-
-
-
- 229 return get_root_value_iterator().get_root_number_type(
true);
-
-
-
- 233 return get_root_value_iterator().get_root_number(
true);
-
-
-
-
- 238 auto _iter = get_root_value_iterator();
- 239 return std::string_view(
reinterpret_cast<const char*
>(_iter.peek_start()), _iter.peek_start_length());
-
-
-
-
- 244 if (json_pointer.empty()) {
- 245 return this->get_value();
-
-
- 248 SIMDJSON_TRY(type().get(t));
-
-
-
- 252 return (*this).get_array().at_pointer(json_pointer);
-
- 254 return (*this).get_object().at_pointer(json_pointer);
-
-
-
-
-
-
-
-
-
-
-
- 266 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::simdjson_result(
- 267 SIMDJSON_IMPLEMENTATION::ondemand::document &&value
-
- 269 implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::document>(
- 270 std::forward<SIMDJSON_IMPLEMENTATION::ondemand::document>(value)
-
-
-
- 274 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::simdjson_result(
-
-
- 277 implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::document>(
-
-
-
-
- 282 simdjson_inline simdjson_result<size_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::count_elements() & noexcept {
- 283 if (error()) {
return error(); }
- 284 return first.count_elements();
-
- 286 simdjson_inline simdjson_result<size_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::count_fields() & noexcept {
- 287 if (error()) {
return error(); }
- 288 return first.count_fields();
-
- 290 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::at(
size_t index) & noexcept {
- 291 if (error()) {
return error(); }
- 292 return first.at(index);
-
- 294 simdjson_inline
error_code simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::rewind() noexcept {
-
-
-
-
- 299 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array_iterator> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::begin() & noexcept {
- 300 if (error()) {
return error(); }
- 301 return first.begin();
-
- 303 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array_iterator> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::end() & noexcept {
-
+
+ 191 return start_or_resume_object()[key];
+
+
+
+ 195 auto error =
iter.skip_child(0);
+ 196 if(error) {
iter.abandon(); }
+
+
+
+
+ 201 auto _iter = get_root_value_iterator();
+ 202 const uint8_t * starting_point{_iter.peek_start()};
+
+ 204 if(error) {
return error; }
+
+
+
+ 208 const uint8_t * final_point{
iter.unsafe_pointer()};
+ 209 return std::string_view(
reinterpret_cast<const char*
>(starting_point),
size_t(final_point - starting_point));
+
+
+
+ 213 return get_root_value_iterator().type();
+
+
+
+
+ 218 auto error =
type().get(this_type);
+ 219 if(error) {
return error; }
+
+
+
+
+ 224 return get_root_value_iterator().is_root_negative();
+
+
+
+ 228 return get_root_value_iterator().is_root_integer(
true);
+
+
+
+ 232 return get_root_value_iterator().get_root_number_type(
true);
+
+
+
+ 236 return get_root_value_iterator().get_root_number(
true);
+
+
+
+
+ 241 auto _iter = get_root_value_iterator();
+ 242 return std::string_view(
reinterpret_cast<const char*
>(_iter.peek_start()), _iter.peek_start_length());
+
+
+
+
+ 247 if (json_pointer.empty()) {
+ 248 return this->get_value();
+
+
+ 251 SIMDJSON_TRY(type().get(t));
+
+
+
+ 255 return (*this).get_array().at_pointer(json_pointer);
+
+ 257 return (*this).get_object().at_pointer(json_pointer);
+
+
+
+
+
+
+
+
+
+
+
+ 269 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::simdjson_result(
+ 270 SIMDJSON_IMPLEMENTATION::ondemand::document &&value
+
+ 272 implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::document>(
+ 273 std::forward<SIMDJSON_IMPLEMENTATION::ondemand::document>(value)
+
+
+
+ 277 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::simdjson_result(
+
+
+ 280 implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::document>(
+
+
+
+
+ 285 simdjson_inline simdjson_result<size_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::count_elements() & noexcept {
+ 286 if (error()) {
return error(); }
+ 287 return first.count_elements();
+
+ 289 simdjson_inline simdjson_result<size_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::count_fields() & noexcept {
+ 290 if (error()) {
return error(); }
+ 291 return first.count_fields();
+
+ 293 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::at(
size_t index) & noexcept {
+ 294 if (error()) {
return error(); }
+ 295 return first.at(index);
+
+ 297 simdjson_inline
error_code simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::rewind() noexcept {
+
+
+
+
+ 302 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array_iterator> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::begin() & noexcept {
+ 303 if (error()) {
return error(); }
+ 304 return first.begin();
- 306 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::find_field_unordered(std::string_view key) & noexcept {
- 307 if (error()) {
return error(); }
- 308 return first.find_field_unordered(key);
-
- 310 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::find_field_unordered(
const char *key) & noexcept {
- 311 if (error()) {
return error(); }
- 312 return first.find_field_unordered(key);
-
- 314 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator[](std::string_view key) & noexcept {
- 315 if (error()) {
return error(); }
-
-
- 318 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator[](
const char *key) & noexcept {
- 319 if (error()) {
return error(); }
-
-
- 322 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::find_field(std::string_view key) & noexcept {
- 323 if (error()) {
return error(); }
- 324 return first.find_field(key);
-
- 326 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::find_field(
const char *key) & noexcept {
- 327 if (error()) {
return error(); }
- 328 return first.find_field(key);
-
- 330 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_array() & noexcept {
- 331 if (error()) {
return error(); }
- 332 return first.get_array();
-
- 334 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::object> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_object() & noexcept {
- 335 if (error()) {
return error(); }
- 336 return first.get_object();
-
- 338 simdjson_inline simdjson_result<uint64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_uint64() noexcept {
-
- 340 return first.get_uint64();
-
- 342 simdjson_inline simdjson_result<uint64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_uint64_in_string() noexcept {
-
- 344 return first.get_uint64_in_string();
-
- 346 simdjson_inline simdjson_result<int64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_int64() noexcept {
-
- 348 return first.get_int64();
-
- 350 simdjson_inline simdjson_result<int64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_int64_in_string() noexcept {
-
- 352 return first.get_int64_in_string();
-
- 354 simdjson_inline simdjson_result<double> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_double() noexcept {
-
- 356 return first.get_double();
-
- 358 simdjson_inline simdjson_result<double> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_double_in_string() noexcept {
-
- 360 return first.get_double_in_string();
-
- 362 simdjson_inline simdjson_result<std::string_view> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_string() noexcept {
-
- 364 return first.get_string();
-
- 366 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_raw_json_string() noexcept {
-
- 368 return first.get_raw_json_string();
-
- 370 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_bool() noexcept {
-
- 372 return first.get_bool();
-
- 374 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_value() noexcept {
-
- 376 return first.get_value();
-
- 378 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::is_null() noexcept {
-
- 380 return first.is_null();
-
-
-
-
- 385 if (error()) {
return error(); }
- 386 return first.get<T>();
-
-
-
- 390 if (error()) {
return error(); }
- 391 return std::forward<SIMDJSON_IMPLEMENTATION::ondemand::document>(first).get<T>();
-
-
-
- 395 if (error()) {
return error(); }
- 396 return first.get<T>(out);
-
-
-
- 400 if (error()) {
return error(); }
- 401 return std::forward<SIMDJSON_IMPLEMENTATION::ondemand::document>(first).get<T>(out);
-
-
- 404 template<> simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get<SIMDJSON_IMPLEMENTATION::ondemand::document>() & noexcept =
delete;
- 405 template<> simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get<SIMDJSON_IMPLEMENTATION::ondemand::document>() && noexcept {
- 406 if (error()) {
return error(); }
- 407 return std::forward<SIMDJSON_IMPLEMENTATION::ondemand::document>(first);
-
- 409 template<> simdjson_inline
error_code simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get<SIMDJSON_IMPLEMENTATION::ondemand::document>(SIMDJSON_IMPLEMENTATION::ondemand::document &out) & noexcept =
delete;
- 410 template<> simdjson_inline
error_code simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get<SIMDJSON_IMPLEMENTATION::ondemand::document>(SIMDJSON_IMPLEMENTATION::ondemand::document &out) && noexcept {
- 411 if (error()) {
return error(); }
- 412 out = std::forward<SIMDJSON_IMPLEMENTATION::ondemand::document>(first);
-
-
-
- 416 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::json_type> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::type() noexcept {
-
-
-
-
- 421 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::is_scalar() noexcept {
-
- 423 return first.is_scalar();
-
-
-
- 427 simdjson_inline
bool simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::is_negative() noexcept {
-
- 429 return first.is_negative();
-
-
- 432 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::is_integer() noexcept {
-
- 434 return first.is_integer();
-
-
- 437 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::number_type> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_number_type() noexcept {
-
- 439 return first.get_number_type();
-
-
- 442 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::number> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_number() noexcept {
-
- 444 return first.get_number();
-
-
-
- 448 #if SIMDJSON_EXCEPTIONS
- 449 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator SIMDJSON_IMPLEMENTATION::ondemand::array() & noexcept(
false) {
- 450 if (error()) {
throw simdjson_error(error()); }
-
+ 306 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array_iterator> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::end() & noexcept {
+
+
+ 309 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::find_field_unordered(std::string_view key) & noexcept {
+ 310 if (error()) {
return error(); }
+ 311 return first.find_field_unordered(key);
+
+ 313 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::find_field_unordered(
const char *key) & noexcept {
+ 314 if (error()) {
return error(); }
+ 315 return first.find_field_unordered(key);
+
+ 317 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator[](std::string_view key) & noexcept {
+ 318 if (error()) {
return error(); }
+
+
+ 321 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator[](
const char *key) & noexcept {
+ 322 if (error()) {
return error(); }
+
+
+ 325 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::find_field(std::string_view key) & noexcept {
+ 326 if (error()) {
return error(); }
+ 327 return first.find_field(key);
+
+ 329 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::find_field(
const char *key) & noexcept {
+ 330 if (error()) {
return error(); }
+ 331 return first.find_field(key);
+
+ 333 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_array() & noexcept {
+ 334 if (error()) {
return error(); }
+ 335 return first.get_array();
+
+ 337 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::object> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_object() & noexcept {
+ 338 if (error()) {
return error(); }
+ 339 return first.get_object();
+
+ 341 simdjson_inline simdjson_result<uint64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_uint64() noexcept {
+
+ 343 return first.get_uint64();
+
+ 345 simdjson_inline simdjson_result<uint64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_uint64_in_string() noexcept {
+
+ 347 return first.get_uint64_in_string();
+
+ 349 simdjson_inline simdjson_result<int64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_int64() noexcept {
+
+ 351 return first.get_int64();
+
+ 353 simdjson_inline simdjson_result<int64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_int64_in_string() noexcept {
+
+ 355 return first.get_int64_in_string();
+
+ 357 simdjson_inline simdjson_result<double> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_double() noexcept {
+
+ 359 return first.get_double();
+
+ 361 simdjson_inline simdjson_result<double> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_double_in_string() noexcept {
+
+ 363 return first.get_double_in_string();
+
+ 365 simdjson_inline simdjson_result<std::string_view> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_string(
bool allow_replacement) noexcept {
+ 366 if (error()) {
return error(); }
+ 367 return first.get_string(allow_replacement);
+
+ 369 simdjson_inline simdjson_result<std::string_view> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_wobbly_string() noexcept {
+
+ 371 return first.get_wobbly_string();
+
+ 373 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_raw_json_string() noexcept {
+
+ 375 return first.get_raw_json_string();
+
+ 377 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_bool() noexcept {
+
+ 379 return first.get_bool();
+
+ 381 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_value() noexcept {
+
+ 383 return first.get_value();
+
+ 385 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::is_null() noexcept {
+
+ 387 return first.is_null();
+
+
+
+
+ 392 if (error()) {
return error(); }
+ 393 return first.get<T>();
+
+
+
+ 397 if (error()) {
return error(); }
+ 398 return std::forward<SIMDJSON_IMPLEMENTATION::ondemand::document>(first).get<T>();
+
+
+
+ 402 if (error()) {
return error(); }
+ 403 return first.get<T>(out);
+
+
+
+ 407 if (error()) {
return error(); }
+ 408 return std::forward<SIMDJSON_IMPLEMENTATION::ondemand::document>(first).get<T>(out);
+
+
+ 411 template<> simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get<SIMDJSON_IMPLEMENTATION::ondemand::document>() & noexcept =
delete;
+ 412 template<> simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get<SIMDJSON_IMPLEMENTATION::ondemand::document>() && noexcept {
+ 413 if (error()) {
return error(); }
+ 414 return std::forward<SIMDJSON_IMPLEMENTATION::ondemand::document>(first);
+
+ 416 template<> simdjson_inline
error_code simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get<SIMDJSON_IMPLEMENTATION::ondemand::document>(SIMDJSON_IMPLEMENTATION::ondemand::document &out) & noexcept =
delete;
+ 417 template<> simdjson_inline
error_code simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get<SIMDJSON_IMPLEMENTATION::ondemand::document>(SIMDJSON_IMPLEMENTATION::ondemand::document &out) && noexcept {
+ 418 if (error()) {
return error(); }
+ 419 out = std::forward<SIMDJSON_IMPLEMENTATION::ondemand::document>(first);
+
+
+
+ 423 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::json_type> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::type() noexcept {
+
+
+
+
+ 428 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::is_scalar() noexcept {
+
+ 430 return first.is_scalar();
+
+
+
+ 434 simdjson_inline
bool simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::is_negative() noexcept {
+
+ 436 return first.is_negative();
+
+
+ 439 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::is_integer() noexcept {
+
+ 441 return first.is_integer();
+
+
+ 444 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::number_type> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_number_type() noexcept {
+
+ 446 return first.get_number_type();
+
+
+ 449 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::number> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::get_number() noexcept {
+
+ 451 return first.get_number();
- 453 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator SIMDJSON_IMPLEMENTATION::ondemand::object() & noexcept(
false) {
- 454 if (error()) {
throw simdjson_error(error()); }
-
-
- 457 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator uint64_t() noexcept(false) {
- 458 if (error()) {
throw simdjson_error(error()); }
-
-
- 461 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator int64_t() noexcept(false) {
- 462 if (error()) {
throw simdjson_error(error()); }
-
-
- 465 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator double() noexcept(false) {
- 466 if (error()) {
throw simdjson_error(error()); }
-
-
- 469 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator std::string_view() noexcept(false) {
- 470 if (error()) {
throw simdjson_error(error()); }
-
-
- 473 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string() noexcept(false) {
- 474 if (error()) {
throw simdjson_error(error()); }
-
-
- 477 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator bool() noexcept(false) {
- 478 if (error()) {
throw simdjson_error(error()); }
-
-
- 481 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator SIMDJSON_IMPLEMENTATION::ondemand::value() noexcept(false) {
- 482 if (error()) {
throw simdjson_error(error()); }
-
-
-
-
-
- 488 simdjson_inline simdjson_result<const char *> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::current_location() noexcept {
-
- 490 return first.current_location();
+
+
+ 455 #if SIMDJSON_EXCEPTIONS
+ 456 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator SIMDJSON_IMPLEMENTATION::ondemand::array() & noexcept(
false) {
+ 457 if (error()) {
throw simdjson_error(error()); }
+
+
+ 460 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator SIMDJSON_IMPLEMENTATION::ondemand::object() & noexcept(
false) {
+ 461 if (error()) {
throw simdjson_error(error()); }
+
+
+ 464 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator uint64_t() noexcept(false) {
+ 465 if (error()) {
throw simdjson_error(error()); }
+
+
+ 468 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator int64_t() noexcept(false) {
+ 469 if (error()) {
throw simdjson_error(error()); }
+
+
+ 472 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator double() noexcept(false) {
+ 473 if (error()) {
throw simdjson_error(error()); }
+
+
+ 476 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator std::string_view() noexcept(false) {
+ 477 if (error()) {
throw simdjson_error(error()); }
+
+
+ 480 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string() noexcept(false) {
+ 481 if (error()) {
throw simdjson_error(error()); }
+
+
+ 484 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator bool() noexcept(false) {
+ 485 if (error()) {
throw simdjson_error(error()); }
+
+
+ 488 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::operator SIMDJSON_IMPLEMENTATION::ondemand::value() noexcept(false) {
+ 489 if (error()) {
throw simdjson_error(error()); }
+
-
- 493 simdjson_inline int32_t simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::current_depth() const noexcept {
-
- 495 return first.current_depth();
-
-
-
-
- 500 return first.raw_json_token();
-
-
-
- 504 if (error()) {
return error(); }
- 505 return first.at_pointer(json_pointer);
-
-
-
-
-
-
-
- 513 namespace SIMDJSON_IMPLEMENTATION {
-
+
+
+
+ 495 simdjson_inline simdjson_result<const char *> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::current_location() noexcept {
+
+ 497 return first.current_location();
+
+
+ 500 simdjson_inline int32_t simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document>::current_depth() const noexcept {
+
+ 502 return first.current_depth();
+
+
+
+
+ 507 return first.raw_json_token();
+
+
+
+ 511 if (error()) {
return error(); }
+ 512 return first.at_pointer(json_pointer);
+
+
- 516 simdjson_inline document_reference::document_reference() noexcept : doc{
nullptr} {}
- 517 simdjson_inline document_reference::document_reference(document &d) noexcept : doc(&d) {}
- 518 simdjson_inline
void document_reference::rewind() noexcept { doc->
rewind(); }
- 519 simdjson_inline simdjson_result<array> document_reference::get_array() & noexcept {
return doc->get_array(); }
- 520 simdjson_inline simdjson_result<object> document_reference::get_object() & noexcept {
return doc->get_object(); }
-
- 536 simdjson_inline
simdjson_result<uint64_t> document_reference::get_uint64_in_string() noexcept {
return doc->get_root_value_iterator().get_root_uint64_in_string(
false); }
- 537 simdjson_inline
simdjson_result<int64_t> document_reference::get_int64() noexcept {
return doc->get_root_value_iterator().get_root_int64(
false); }
- 538 simdjson_inline
simdjson_result<int64_t> document_reference::get_int64_in_string() noexcept {
return doc->get_root_value_iterator().get_root_int64_in_string(
false); }
- 539 simdjson_inline simdjson_result<double> document_reference::get_double() noexcept {
return doc->get_root_value_iterator().get_root_double(
false); }
- 540 simdjson_inline simdjson_result<double> document_reference::get_double_in_string() noexcept {
return doc->get_root_value_iterator().get_root_double(
false); }
- 541 simdjson_inline simdjson_result<std::string_view> document_reference::get_string() noexcept {
return doc->get_root_value_iterator().get_root_string(
false); }
- 542 simdjson_inline simdjson_result<raw_json_string> document_reference::get_raw_json_string() noexcept {
return doc->get_root_value_iterator().get_root_raw_json_string(
false); }
- 543 simdjson_inline simdjson_result<bool> document_reference::get_bool() noexcept {
return doc->get_root_value_iterator().get_root_bool(
false); }
- 544 simdjson_inline simdjson_result<value> document_reference::get_value() noexcept {
return doc->
get_value(); }
- 545 simdjson_inline simdjson_result<bool> document_reference::is_null() noexcept {
return doc->get_root_value_iterator().is_root_null(
false); }
-
- 547 #if SIMDJSON_EXCEPTIONS
- 548 simdjson_inline document_reference::operator
array() & noexcept(
false) {
return array(*doc); }
- 549 simdjson_inline document_reference::operator
object() & noexcept(
false) {
return object(*doc); }
- 550 simdjson_inline document_reference::operator uint64_t() noexcept(false) {
return get_uint64(); }
- 551 simdjson_inline document_reference::operator int64_t() noexcept(false) {
return get_int64(); }
- 552 simdjson_inline document_reference::operator double() noexcept(false) {
return get_double(); }
- 553 simdjson_inline document_reference::operator std::string_view() noexcept(false) {
return std::string_view(*doc); }
- 554 simdjson_inline document_reference::operator raw_json_string() noexcept(false) {
return raw_json_string(*doc); }
- 555 simdjson_inline document_reference::operator bool() noexcept(false) {
return get_bool(); }
- 556 simdjson_inline document_reference::operator value() noexcept(false) {
return value(*doc); }
-
- 558 simdjson_inline simdjson_result<size_t> document_reference::count_elements() & noexcept {
return doc->count_elements(); }
- 559 simdjson_inline simdjson_result<size_t> document_reference::count_fields() & noexcept {
return doc->count_fields(); }
- 560 simdjson_inline simdjson_result<value> document_reference::at(
size_t index) & noexcept {
return doc->at(index); }
- 561 simdjson_inline simdjson_result<array_iterator> document_reference::begin() & noexcept {
return doc->begin(); }
- 562 simdjson_inline simdjson_result<array_iterator> document_reference::end() & noexcept {
return doc->end(); }
- 563 simdjson_inline simdjson_result<value> document_reference::find_field(std::string_view key) & noexcept {
return doc->find_field(key); }
- 564 simdjson_inline simdjson_result<value> document_reference::find_field(
const char *key) & noexcept {
return doc->find_field(key); }
- 565 simdjson_inline simdjson_result<value> document_reference::operator[](std::string_view key) & noexcept {
return (*doc)[key]; }
- 566 simdjson_inline simdjson_result<value> document_reference::operator[](
const char *key) & noexcept {
return (*doc)[key]; }
- 567 simdjson_inline simdjson_result<value> document_reference::find_field_unordered(std::string_view key) & noexcept {
return doc->find_field_unordered(key); }
- 568 simdjson_inline simdjson_result<value> document_reference::find_field_unordered(
const char *key) & noexcept {
return doc->find_field_unordered(key); }
- 569 simdjson_inline simdjson_result<json_type> document_reference::type() noexcept {
return doc->
type(); }
- 570 simdjson_inline simdjson_result<bool> document_reference::is_scalar() noexcept {
return doc->
is_scalar(); }
- 571 simdjson_inline simdjson_result<const char *> document_reference::current_location() noexcept {
return doc->
current_location(); }
- 572 simdjson_inline int32_t document_reference::current_depth() const noexcept {
return doc->
current_depth(); }
- 573 simdjson_inline
bool document_reference::is_negative() noexcept {
return doc->
is_negative(); }
- 574 simdjson_inline simdjson_result<bool> document_reference::is_integer() noexcept {
return doc->get_root_value_iterator().is_root_integer(
false); }
- 575 simdjson_inline simdjson_result<number_type> document_reference::get_number_type() noexcept {
return doc->get_root_value_iterator().get_root_number_type(
false); }
- 576 simdjson_inline simdjson_result<number> document_reference::get_number() noexcept {
return doc->get_root_value_iterator().get_root_number(
false); }
- 577 simdjson_inline simdjson_result<std::string_view> document_reference::raw_json_token() noexcept {
return doc->
raw_json_token(); }
- 578 simdjson_inline simdjson_result<value> document_reference::at_pointer(std::string_view json_pointer) noexcept {
return doc->at_pointer(json_pointer); }
- 579 simdjson_inline simdjson_result<std::string_view> document_reference::raw_json() noexcept {
return doc->
raw_json();}
- 580 simdjson_inline document_reference::operator document&()
const noexcept {
return *doc; }
-
-
-
-
-
-
-
-
- 589 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::document_reference value,
error_code error)
- 590 noexcept : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>(std::forward<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>(value), error) {}
-
-
- 593 simdjson_inline simdjson_result<size_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::count_elements() & noexcept {
- 594 if (error()) {
return error(); }
- 595 return first.count_elements();
-
- 597 simdjson_inline simdjson_result<size_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::count_fields() & noexcept {
- 598 if (error()) {
return error(); }
- 599 return first.count_fields();
-
- 601 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::at(
size_t index) & noexcept {
+
+
+
+
+ 520 namespace SIMDJSON_IMPLEMENTATION {
+
+
+ 523 simdjson_inline document_reference::document_reference() noexcept : doc{
nullptr} {}
+ 524 simdjson_inline document_reference::document_reference(document &d) noexcept : doc(&d) {}
+ 525 simdjson_inline
void document_reference::rewind() noexcept { doc->
rewind(); }
+ 526 simdjson_inline simdjson_result<array> document_reference::get_array() & noexcept {
return doc->get_array(); }
+ 527 simdjson_inline simdjson_result<object> document_reference::get_object() & noexcept {
return doc->get_object(); }
+
+ 543 simdjson_inline
simdjson_result<uint64_t> document_reference::get_uint64_in_string() noexcept {
return doc->get_root_value_iterator().get_root_uint64_in_string(
false); }
+ 544 simdjson_inline
simdjson_result<int64_t> document_reference::get_int64() noexcept {
return doc->get_root_value_iterator().get_root_int64(
false); }
+ 545 simdjson_inline
simdjson_result<int64_t> document_reference::get_int64_in_string() noexcept {
return doc->get_root_value_iterator().get_root_int64_in_string(
false); }
+ 546 simdjson_inline simdjson_result<double> document_reference::get_double() noexcept {
return doc->get_root_value_iterator().get_root_double(
false); }
+ 547 simdjson_inline simdjson_result<double> document_reference::get_double_in_string() noexcept {
return doc->get_root_value_iterator().get_root_double(
false); }
+ 548 simdjson_inline simdjson_result<std::string_view> document_reference::get_string(
bool allow_replacement) noexcept {
return doc->get_root_value_iterator().get_root_string(
false, allow_replacement); }
+ 549 simdjson_inline simdjson_result<std::string_view> document_reference::get_wobbly_string() noexcept {
return doc->get_root_value_iterator().get_root_wobbly_string(
false); }
+ 550 simdjson_inline simdjson_result<raw_json_string> document_reference::get_raw_json_string() noexcept {
return doc->get_root_value_iterator().get_root_raw_json_string(
false); }
+ 551 simdjson_inline simdjson_result<bool> document_reference::get_bool() noexcept {
return doc->get_root_value_iterator().get_root_bool(
false); }
+ 552 simdjson_inline simdjson_result<value> document_reference::get_value() noexcept {
return doc->
get_value(); }
+ 553 simdjson_inline simdjson_result<bool> document_reference::is_null() noexcept {
return doc->get_root_value_iterator().is_root_null(
false); }
+
+ 555 #if SIMDJSON_EXCEPTIONS
+ 556 simdjson_inline document_reference::operator
array() & noexcept(
false) {
return array(*doc); }
+ 557 simdjson_inline document_reference::operator
object() & noexcept(
false) {
return object(*doc); }
+ 558 simdjson_inline document_reference::operator uint64_t() noexcept(false) {
return get_uint64(); }
+ 559 simdjson_inline document_reference::operator int64_t() noexcept(false) {
return get_int64(); }
+ 560 simdjson_inline document_reference::operator double() noexcept(false) {
return get_double(); }
+ 561 simdjson_inline document_reference::operator std::string_view() noexcept(false) {
return std::string_view(*doc); }
+ 562 simdjson_inline document_reference::operator raw_json_string() noexcept(false) {
return raw_json_string(*doc); }
+ 563 simdjson_inline document_reference::operator bool() noexcept(false) {
return get_bool(); }
+ 564 simdjson_inline document_reference::operator value() noexcept(false) {
return value(*doc); }
+
+ 566 simdjson_inline simdjson_result<size_t> document_reference::count_elements() & noexcept {
return doc->count_elements(); }
+ 567 simdjson_inline simdjson_result<size_t> document_reference::count_fields() & noexcept {
return doc->count_fields(); }
+ 568 simdjson_inline simdjson_result<value> document_reference::at(
size_t index) & noexcept {
return doc->at(index); }
+ 569 simdjson_inline simdjson_result<array_iterator> document_reference::begin() & noexcept {
return doc->begin(); }
+ 570 simdjson_inline simdjson_result<array_iterator> document_reference::end() & noexcept {
return doc->end(); }
+ 571 simdjson_inline simdjson_result<value> document_reference::find_field(std::string_view key) & noexcept {
return doc->find_field(key); }
+ 572 simdjson_inline simdjson_result<value> document_reference::find_field(
const char *key) & noexcept {
return doc->find_field(key); }
+ 573 simdjson_inline simdjson_result<value> document_reference::operator[](std::string_view key) & noexcept {
return (*doc)[key]; }
+ 574 simdjson_inline simdjson_result<value> document_reference::operator[](
const char *key) & noexcept {
return (*doc)[key]; }
+ 575 simdjson_inline simdjson_result<value> document_reference::find_field_unordered(std::string_view key) & noexcept {
return doc->find_field_unordered(key); }
+ 576 simdjson_inline simdjson_result<value> document_reference::find_field_unordered(
const char *key) & noexcept {
return doc->find_field_unordered(key); }
+ 577 simdjson_inline simdjson_result<json_type> document_reference::type() noexcept {
return doc->
type(); }
+ 578 simdjson_inline simdjson_result<bool> document_reference::is_scalar() noexcept {
return doc->
is_scalar(); }
+ 579 simdjson_inline simdjson_result<const char *> document_reference::current_location() noexcept {
return doc->
current_location(); }
+ 580 simdjson_inline int32_t document_reference::current_depth() const noexcept {
return doc->
current_depth(); }
+ 581 simdjson_inline
bool document_reference::is_negative() noexcept {
return doc->
is_negative(); }
+ 582 simdjson_inline simdjson_result<bool> document_reference::is_integer() noexcept {
return doc->get_root_value_iterator().is_root_integer(
false); }
+ 583 simdjson_inline simdjson_result<number_type> document_reference::get_number_type() noexcept {
return doc->get_root_value_iterator().get_root_number_type(
false); }
+ 584 simdjson_inline simdjson_result<number> document_reference::get_number() noexcept {
return doc->get_root_value_iterator().get_root_number(
false); }
+ 585 simdjson_inline simdjson_result<std::string_view> document_reference::raw_json_token() noexcept {
return doc->
raw_json_token(); }
+ 586 simdjson_inline simdjson_result<value> document_reference::at_pointer(std::string_view json_pointer) noexcept {
return doc->at_pointer(json_pointer); }
+ 587 simdjson_inline simdjson_result<std::string_view> document_reference::raw_json() noexcept {
return doc->
raw_json();}
+ 588 simdjson_inline document_reference::operator document&()
const noexcept {
return *doc; }
+
+
+
+
+
+
+
+
+ 597 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::document_reference value,
error_code error)
+ 598 noexcept : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>(std::forward<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>(value), error) {}
+
+
+ 601 simdjson_inline simdjson_result<size_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::count_elements() & noexcept {
602 if (error()) {
return error(); }
- 603 return first.at(index);
+ 603 return first.count_elements();
- 605 simdjson_inline
error_code simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::rewind() noexcept {
-
-
-
-
- 610 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array_iterator> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::begin() & noexcept {
- 611 if (error()) {
return error(); }
- 612 return first.begin();
-
- 614 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array_iterator> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::end() & noexcept {
-
-
- 617 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::find_field_unordered(std::string_view key) & noexcept {
- 618 if (error()) {
return error(); }
- 619 return first.find_field_unordered(key);
-
- 621 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::find_field_unordered(
const char *key) & noexcept {
- 622 if (error()) {
return error(); }
- 623 return first.find_field_unordered(key);
+ 605 simdjson_inline simdjson_result<size_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::count_fields() & noexcept {
+ 606 if (error()) {
return error(); }
+ 607 return first.count_fields();
+
+ 609 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::at(
size_t index) & noexcept {
+ 610 if (error()) {
return error(); }
+ 611 return first.at(index);
+
+ 613 simdjson_inline
error_code simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::rewind() noexcept {
+
+
+
+
+ 618 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array_iterator> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::begin() & noexcept {
+ 619 if (error()) {
return error(); }
+ 620 return first.begin();
+
+ 622 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array_iterator> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::end() & noexcept {
+
- 625 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator[](std::string_view key) & noexcept {
+ 625 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::find_field_unordered(std::string_view key) & noexcept {
626 if (error()) {
return error(); }
-
+ 627 return first.find_field_unordered(key);
- 629 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator[](
const char *key) & noexcept {
+ 629 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::find_field_unordered(
const char *key) & noexcept {
630 if (error()) {
return error(); }
-
+ 631 return first.find_field_unordered(key);
- 633 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::find_field(std::string_view key) & noexcept {
+ 633 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator[](std::string_view key) & noexcept {
634 if (error()) {
return error(); }
- 635 return first.find_field(key);
+
- 637 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::find_field(
const char *key) & noexcept {
+ 637 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator[](
const char *key) & noexcept {
638 if (error()) {
return error(); }
- 639 return first.find_field(key);
+
- 641 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_array() & noexcept {
+ 641 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::find_field(std::string_view key) & noexcept {
642 if (error()) {
return error(); }
- 643 return first.get_array();
+ 643 return first.find_field(key);
- 645 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::object> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_object() & noexcept {
+ 645 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::find_field(
const char *key) & noexcept {
646 if (error()) {
return error(); }
- 647 return first.get_object();
+ 647 return first.find_field(key);
- 649 simdjson_inline simdjson_result<uint64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_uint64() noexcept {
-
- 651 return first.get_uint64();
+ 649 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_array() & noexcept {
+ 650 if (error()) {
return error(); }
+ 651 return first.get_array();
- 653 simdjson_inline simdjson_result<uint64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_uint64_in_string() noexcept {
-
- 655 return first.get_uint64_in_string();
+ 653 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::object> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_object() & noexcept {
+ 654 if (error()) {
return error(); }
+ 655 return first.get_object();
- 657 simdjson_inline simdjson_result<int64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_int64() noexcept {
+ 657 simdjson_inline simdjson_result<uint64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_uint64() noexcept {
- 659 return first.get_int64();
+ 659 return first.get_uint64();
- 661 simdjson_inline simdjson_result<int64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_int64_in_string() noexcept {
+ 661 simdjson_inline simdjson_result<uint64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_uint64_in_string() noexcept {
- 663 return first.get_int64_in_string();
+ 663 return first.get_uint64_in_string();
- 665 simdjson_inline simdjson_result<double> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_double() noexcept {
+ 665 simdjson_inline simdjson_result<int64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_int64() noexcept {
- 667 return first.get_double();
+ 667 return first.get_int64();
- 669 simdjson_inline simdjson_result<double> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_double_in_string() noexcept {
+ 669 simdjson_inline simdjson_result<int64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_int64_in_string() noexcept {
- 671 return first.get_double_in_string();
+ 671 return first.get_int64_in_string();
- 673 simdjson_inline simdjson_result<std::string_view> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_string() noexcept {
+ 673 simdjson_inline simdjson_result<double> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_double() noexcept {
- 675 return first.get_string();
+ 675 return first.get_double();
- 677 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_raw_json_string() noexcept {
+ 677 simdjson_inline simdjson_result<double> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_double_in_string() noexcept {
- 679 return first.get_raw_json_string();
+ 679 return first.get_double_in_string();
- 681 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_bool() noexcept {
-
- 683 return first.get_bool();
+ 681 simdjson_inline simdjson_result<std::string_view> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_string(
bool allow_replacement) noexcept {
+ 682 if (error()) {
return error(); }
+ 683 return first.get_string(allow_replacement);
- 685 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_value() noexcept {
+ 685 simdjson_inline simdjson_result<std::string_view> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_wobbly_string() noexcept {
- 687 return first.get_value();
+ 687 return first.get_wobbly_string();
- 689 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::is_null() noexcept {
+ 689 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_raw_json_string() noexcept {
- 691 return first.is_null();
+ 691 return first.get_raw_json_string();
- 693 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::json_type> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::type() noexcept {
+ 693 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_bool() noexcept {
-
+ 695 return first.get_bool();
- 697 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::is_scalar() noexcept {
+ 697 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_value() noexcept {
- 699 return first.is_scalar();
+ 699 return first.get_value();
- 701 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::is_negative() noexcept {
+ 701 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::is_null() noexcept {
- 703 return first.is_negative();
+ 703 return first.is_null();
- 705 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::is_integer() noexcept {
+ 705 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::json_type> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::type() noexcept {
- 707 return first.is_integer();
+
- 709 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::number_type> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_number_type() noexcept {
+ 709 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::is_scalar() noexcept {
- 711 return first.get_number_type();
+ 711 return first.is_scalar();
- 713 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::number> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_number() noexcept {
+ 713 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::is_negative() noexcept {
- 715 return first.get_number();
+ 715 return first.is_negative();
- 717 #if SIMDJSON_EXCEPTIONS
- 718 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator SIMDJSON_IMPLEMENTATION::ondemand::array() & noexcept(
false) {
- 719 if (error()) {
throw simdjson_error(error()); }
-
-
- 722 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator SIMDJSON_IMPLEMENTATION::ondemand::object() & noexcept(
false) {
- 723 if (error()) {
throw simdjson_error(error()); }
-
-
- 726 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator uint64_t() noexcept(false) {
- 727 if (error()) {
throw simdjson_error(error()); }
-
-
- 730 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator int64_t() noexcept(false) {
+ 717 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::is_integer() noexcept {
+
+ 719 return first.is_integer();
+
+ 721 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::number_type> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_number_type() noexcept {
+
+ 723 return first.get_number_type();
+
+ 725 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::number> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::get_number() noexcept {
+
+ 727 return first.get_number();
+
+ 729 #if SIMDJSON_EXCEPTIONS
+ 730 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator SIMDJSON_IMPLEMENTATION::ondemand::array() & noexcept(
false) {
731 if (error()) {
throw simdjson_error(error()); }
- 734 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator double() noexcept(false) {
+ 734 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator SIMDJSON_IMPLEMENTATION::ondemand::object() & noexcept(
false) {
735 if (error()) {
throw simdjson_error(error()); }
- 738 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator std::string_view() noexcept(false) {
+ 738 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator uint64_t() noexcept(false) {
739 if (error()) {
throw simdjson_error(error()); }
- 742 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string() noexcept(false) {
+ 742 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator int64_t() noexcept(false) {
743 if (error()) {
throw simdjson_error(error()); }
- 746 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator bool() noexcept(false) {
+ 746 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator double() noexcept(false) {
747 if (error()) {
throw simdjson_error(error()); }
- 750 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator SIMDJSON_IMPLEMENTATION::ondemand::value() noexcept(false) {
+ 750 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator std::string_view() noexcept(false) {
751 if (error()) {
throw simdjson_error(error()); }
-
-
- 756 simdjson_inline simdjson_result<const char *> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::current_location() noexcept {
-
- 758 return first.current_location();
-
-
-
-
- 763 return first.raw_json_token();
-
-
-
- 767 if (error()) {
return error(); }
- 768 return first.at_pointer(json_pointer);
-
-
-
-
+ 754 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string() noexcept(false) {
+ 755 if (error()) {
throw simdjson_error(error()); }
+
+
+ 758 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator bool() noexcept(false) {
+ 759 if (error()) {
throw simdjson_error(error()); }
+
+
+ 762 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::operator SIMDJSON_IMPLEMENTATION::ondemand::value() noexcept(false) {
+ 763 if (error()) {
throw simdjson_error(error()); }
+
+
+
+
+ 768 simdjson_inline simdjson_result<const char *> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::document_reference>::current_location() noexcept {
+
+ 770 return first.current_location();
+
+
+
+
+ 775 return first.raw_json_token();
+
+
+
+ 779 if (error()) {
return error(); }
+ 780 return first.at_pointer(json_pointer);
+
+
+
+
A forward-only JSON array.
static simdjson_inline simdjson_result< array > start_root(value_iterator &iter) noexcept
Begin array iteration from the root.
-simdjson_inline simdjson_result< uint64_t > get_uint64() noexcept
The document_reference instances are used primarily/solely for streams of JSON documents.
-simdjson_inline simdjson_result< value > at(size_t index) &noexcept
Get the value at the given index in the array.
+simdjson_inline simdjson_result< uint64_t > get_uint64() noexcept
The document_reference instances are used primarily/solely for streams of JSON documents.
+simdjson_inline simdjson_result< value > at(size_t index) &noexcept
Get the value at the given index in the array.
simdjson_inline int32_t current_depth() const noexcept
Returns the current depth in the document if in bounds.
-simdjson_inline simdjson_result< array_iterator > begin() &noexcept
Begin array iteration.
-simdjson_inline simdjson_result< size_t > count_fields() &noexcept
This method scans the object and counts the number of key-value pairs.
-simdjson_warn_unused simdjson_inline simdjson_result< number > get_number() noexcept
Attempt to parse an ondemand::number.
+simdjson_inline simdjson_result< array_iterator > begin() &noexcept
Begin array iteration.
+simdjson_inline simdjson_result< size_t > count_fields() &noexcept
This method scans the object and counts the number of key-value pairs.
+simdjson_inline simdjson_result< std::string_view > get_string(bool allow_replacement=false) noexcept
Cast this JSON value to a string.
+simdjson_warn_unused simdjson_inline simdjson_result< number > get_number() noexcept
Attempt to parse an ondemand::number.
bool is_alive() noexcept
Some unrecoverable error conditions may render the document instance unusable.
-simdjson_inline simdjson_result< bool > get_bool() noexcept
Cast this JSON value to a bool.
+simdjson_inline simdjson_result< bool > get_bool() noexcept
Cast this JSON value to a bool.
simdjson_inline simdjson_result< object > get_object() &noexcept
Cast this JSON value to an object.
simdjson_inline simdjson_result< uint64_t > get_uint64() noexcept
Cast this JSON value to an unsigned integer.
-simdjson_inline bool is_negative() noexcept
Checks whether the document is a negative number.
+simdjson_inline bool is_negative() noexcept
Checks whether the document is a negative number.
simdjson_inline document() noexcept=default
Create a new invalid document.
simdjson_result< const char * > current_location() noexcept
Returns the current location in the document if in bounds.
-simdjson_inline simdjson_result< std::string_view > raw_json_token() noexcept
Get the raw JSON for this token.
+simdjson_inline simdjson_result< std::string_view > raw_json_token() noexcept
Get the raw JSON for this token.
simdjson_inline simdjson_result< uint64_t > get_uint64_in_string() noexcept
Cast this JSON value (inside string) to an unsigned integer.
-simdjson_inline simdjson_result< bool > is_null() noexcept
Checks if this JSON value is null.
+simdjson_inline simdjson_result< bool > is_null() noexcept
Checks if this JSON value is null.
simdjson_inline simdjson_result< int64_t > get_int64() noexcept
Cast this JSON value to a signed integer.
-simdjson_inline simdjson_result< value > at_pointer(std::string_view json_pointer) noexcept
Get the value associated with the given JSON pointer.
-simdjson_inline simdjson_result< json_type > type() noexcept
Get the type of this JSON value.
-simdjson_inline simdjson_result< array_iterator > end() &noexcept
Sentinel representing the end of the array.
-simdjson_inline simdjson_result< T > get() &noexcept
Get this value as the given type.
+simdjson_inline simdjson_result< value > at_pointer(std::string_view json_pointer) noexcept
Get the value associated with the given JSON pointer.
+simdjson_inline simdjson_result< json_type > type() noexcept
Get the type of this JSON value.
+simdjson_inline simdjson_result< array_iterator > end() &noexcept
Sentinel representing the end of the array.
+simdjson_inline simdjson_result< T > get() &noexcept
Get this value as the given type.
simdjson_inline simdjson_result< double > get_double_in_string() noexcept
Cast this JSON value (inside string) to a double.
-json_iterator iter
Current position in the document.
+json_iterator iter
Current position in the document.
simdjson_inline simdjson_result< double > get_double() noexcept
Cast this JSON value to a double.
std::string to_debug_string() noexcept
Returns debugging information.
void rewind() noexcept
Reset the iterator inside the document instance so we are pointing back at the beginning of the docum...
-simdjson_inline simdjson_result< std::string_view > raw_json() noexcept
Consumes the document and returns a string_view instance corresponding to the document as represented...
-simdjson_inline simdjson_result< value > find_field_unordered(std::string_view key) &noexcept
Look up a field by name on an object, without regard to key order.
+simdjson_inline simdjson_result< std::string_view > raw_json() noexcept
Consumes the document and returns a string_view instance corresponding to the document as represented...
+simdjson_inline simdjson_result< value > find_field_unordered(std::string_view key) &noexcept
Look up a field by name on an object, without regard to key order.
simdjson_inline simdjson_result< int64_t > get_int64_in_string() noexcept
Cast this JSON value (inside string) to a signed integer.
-simdjson_inline simdjson_result< size_t > count_elements() &noexcept
This method scans the array and counts the number of elements.
+simdjson_inline simdjson_result< size_t > count_elements() &noexcept
This method scans the array and counts the number of elements.
simdjson_inline simdjson_result< value > get_value() noexcept
Cast this JSON value to a value when the document is an object or an array.
-simdjson_inline simdjson_result< value > find_field(std::string_view key) &noexcept
Look up a field by name on an object (order-sensitive).
-simdjson_inline simdjson_result< number_type > get_number_type() noexcept
Determine the number type (integer or floating-point number) as quickly as possible.
-simdjson_inline error_code consume() noexcept
Consumes the document.
-simdjson_inline simdjson_result< bool > is_scalar() noexcept
Checks whether the document is a scalar (string, number, null, Boolean).
-simdjson_inline simdjson_result< std::string_view > get_string() noexcept
Cast this JSON value to a string.
+simdjson_inline simdjson_result< value > find_field(std::string_view key) &noexcept
Look up a field by name on an object (order-sensitive).
+simdjson_inline simdjson_result< number_type > get_number_type() noexcept
Determine the number type (integer or floating-point number) as quickly as possible.
+simdjson_inline error_code consume() noexcept
Consumes the document.
+simdjson_inline simdjson_result< bool > is_scalar() noexcept
Checks whether the document is a scalar (string, number, null, Boolean).
+simdjson_inline simdjson_result< std::string_view > get_wobbly_string() noexcept
Cast this JSON value to a string.
simdjson_inline simdjson_result< array > get_array() &noexcept
Cast this JSON value to an array.
-simdjson_inline simdjson_result< bool > is_integer() noexcept
Checks whether the document is an integer number.
-simdjson_inline simdjson_result< raw_json_string > get_raw_json_string() noexcept
Cast this JSON value to a raw_json_string.
+simdjson_inline simdjson_result< bool > is_integer() noexcept
Checks whether the document is an integer number.
+simdjson_inline simdjson_result< raw_json_string > get_raw_json_string() noexcept
Cast this JSON value to a raw_json_string.
A forward-only JSON object field iterator.
A string escaped per JSON rules, terminated with quote (").
An ephemeral JSON value returned during iteration.
@@ -893,7 +906,7 @@ $(document).ready(function(){initNavTree('generic_2ondemand_2document-inl_8h_sou
@ SCALAR_DOCUMENT_AS_VALUE
A scalar document is treated as a value.
@ INVALID_JSON_POINTER
Invalid JSON pointer reference.
-
+
The result of a simdjson operation that could fail.
simdjson_inline error_code error() const noexcept
The error.
simdjson_warn_unused simdjson_inline error_code get(T &value) &&noexcept
Move the value to the provided variable.
diff --git a/generic_2ondemand_2document_8h_source.html b/generic_2ondemand_2document_8h_source.html
index 78e5864f5..a61fa8fb8 100644
--- a/generic_2ondemand_2document_8h_source.html
+++ b/generic_2ondemand_2document_8h_source.html
@@ -122,344 +122,349 @@ $(document).ready(function(){initNavTree('generic_2ondemand_2document_8h_source.
-
-
-
-
-
-
-
-
-
-
- 152 static_assert(!
sizeof(T),
"The get method with given type is not implemented by the simdjson library.");
-
-
-
-
- 158 static_assert(!
sizeof(T),
"The get method with given type is not implemented by the simdjson library.");
-
-
-
- 174 template<
typename T> simdjson_inline
error_code get(T &out) && noexcept;
-
- 176 #if SIMDJSON_EXCEPTIONS
- 183 simdjson_inline
operator array() & noexcept(
false);
- 190 simdjson_inline
operator object() & noexcept(
false);
- 197 simdjson_inline
operator uint64_t() noexcept(false);
- 204 simdjson_inline operator int64_t() noexcept(false);
- 211 simdjson_inline operator
double() noexcept(false);
- 221 simdjson_inline operator std::string_view() noexcept(false);
-
- 237 simdjson_inline operator
bool() noexcept(false);
- 244 simdjson_inline operator
value() noexcept(false);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+ 165 static_assert(!
sizeof(T),
"The get method with given type is not implemented by the simdjson library.");
+
+
+
+
+ 171 static_assert(!
sizeof(T),
"The get method with given type is not implemented by the simdjson library.");
+
+
+
+ 187 template<
typename T> simdjson_inline
error_code get(T &out) && noexcept;
+
+ 189 #if SIMDJSON_EXCEPTIONS
+ 196 simdjson_inline
operator array() & noexcept(
false);
+ 203 simdjson_inline
operator object() & noexcept(
false);
+ 210 simdjson_inline
operator uint64_t() noexcept(false);
+ 217 simdjson_inline operator int64_t() noexcept(false);
+ 224 simdjson_inline operator
double() noexcept(false);
+ 234 simdjson_inline operator std::string_view() noexcept(false);
+
+ 250 simdjson_inline operator
bool() noexcept(false);
+ 257 simdjson_inline operator
value() noexcept(false);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
- 487 inline
void rewind() noexcept;
-
-
-
-
-
-
-
-
-
-
-
-
- 558 simdjson_inline
document(ondemand::json_iterator &&
iter) noexcept;
- 559 simdjson_inline const uint8_t *text(uint32_t idx) const noexcept;
-
- 561 simdjson_inline value_iterator resume_value_iterator() noexcept;
- 562 simdjson_inline value_iterator get_root_value_iterator() noexcept;
- 563 simdjson_inline
simdjson_result<
object> start_or_resume_object() noexcept;
- 564 static simdjson_inline
document start(ondemand::json_iterator &&
iter) noexcept;
-
-
-
-
-
-
-
-
-
- 574 friend class ondemand::parser;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 593 simdjson_inline
void rewind() noexcept;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 609 simdjson_inline
operator document&()
const noexcept;
-
- 611 #if SIMDJSON_EXCEPTIONS
- 612 simdjson_inline
operator array() & noexcept(
false);
- 613 simdjson_inline
operator object() & noexcept(
false);
- 614 simdjson_inline
operator uint64_t() noexcept(
false);
- 615 simdjson_inline
operator int64_t() noexcept(
false);
- 616 simdjson_inline
operator double() noexcept(
false);
- 617 simdjson_inline
operator std::string_view() noexcept(
false);
-
- 619 simdjson_inline
operator bool() noexcept(
false);
- 620 simdjson_inline
operator value() noexcept(
false);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 638 simdjson_inline int32_t current_depth()
const noexcept;
- 639 simdjson_inline
bool is_negative() noexcept;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+ 500 inline
void rewind() noexcept;
+
+
+
+
+
+
+
+
+
+
+
+
+ 571 simdjson_inline
document(ondemand::json_iterator &&
iter) noexcept;
+ 572 simdjson_inline const uint8_t *text(uint32_t idx) const noexcept;
+
+ 574 simdjson_inline value_iterator resume_value_iterator() noexcept;
+ 575 simdjson_inline value_iterator get_root_value_iterator() noexcept;
+ 576 simdjson_inline
simdjson_result<
object> start_or_resume_object() noexcept;
+ 577 static simdjson_inline
document start(ondemand::json_iterator &&
iter) noexcept;
+
+
+
+
+
+
+
+
+
+ 587 friend class ondemand::parser;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 606 simdjson_inline
void rewind() noexcept;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 623 simdjson_inline
operator document&()
const noexcept;
+
+ 625 #if SIMDJSON_EXCEPTIONS
+ 626 simdjson_inline
operator array() & noexcept(
false);
+ 627 simdjson_inline
operator object() & noexcept(
false);
+ 628 simdjson_inline
operator uint64_t() noexcept(
false);
+ 629 simdjson_inline
operator int64_t() noexcept(
false);
+ 630 simdjson_inline
operator double() noexcept(
false);
+ 631 simdjson_inline
operator std::string_view() noexcept(
false);
+
+ 633 simdjson_inline
operator bool() noexcept(
false);
+ 634 simdjson_inline
operator value() noexcept(
false);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 652 simdjson_inline int32_t current_depth()
const noexcept;
+ 653 simdjson_inline
bool is_negative() noexcept;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
- 679 template<
typename T> simdjson_inline
error_code get(T &out) & noexcept;
- 680 template<
typename T> simdjson_inline
error_code get(T &out) && noexcept;
-
- 682 #if SIMDJSON_EXCEPTIONS
-
-
- 685 simdjson_inline
operator uint64_t() noexcept(
false);
- 686 simdjson_inline
operator int64_t() noexcept(
false);
- 687 simdjson_inline
operator double() noexcept(
false);
- 688 simdjson_inline
operator std::string_view() noexcept(
false);
-
- 690 simdjson_inline
operator bool() noexcept(
false);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 707 simdjson_inline int32_t current_depth()
const noexcept;
- 708 simdjson_inline
bool is_negative() noexcept;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 746 #if SIMDJSON_EXCEPTIONS
-
-
- 749 simdjson_inline
operator uint64_t() noexcept(
false);
- 750 simdjson_inline
operator int64_t() noexcept(
false);
- 751 simdjson_inline
operator double() noexcept(
false);
- 752 simdjson_inline
operator std::string_view() noexcept(
false);
-
- 754 simdjson_inline
operator bool() noexcept(
false);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 694 template<
typename T> simdjson_inline
error_code get(T &out) & noexcept;
+ 695 template<
typename T> simdjson_inline
error_code get(T &out) && noexcept;
+
+ 697 #if SIMDJSON_EXCEPTIONS
+
+
+ 700 simdjson_inline
operator uint64_t() noexcept(
false);
+ 701 simdjson_inline
operator int64_t() noexcept(
false);
+ 702 simdjson_inline
operator double() noexcept(
false);
+ 703 simdjson_inline
operator std::string_view() noexcept(
false);
+
+ 705 simdjson_inline
operator bool() noexcept(
false);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 722 simdjson_inline int32_t current_depth()
const noexcept;
+ 723 simdjson_inline
bool is_negative() noexcept;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 762 #if SIMDJSON_EXCEPTIONS
+
+
+ 765 simdjson_inline
operator uint64_t() noexcept(
false);
+ 766 simdjson_inline
operator int64_t() noexcept(
false);
+ 767 simdjson_inline
operator double() noexcept(
false);
+ 768 simdjson_inline
operator std::string_view() noexcept(
false);
+
+ 770 simdjson_inline
operator bool() noexcept(
false);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
A forward-only JSON array.
A forward-only JSON array.
-A document_reference is a thin wrapper around a document reference instance.
-simdjson_inline simdjson_result< uint64_t > get_uint64() noexcept
The document_reference instances are used primarily/solely for streams of JSON documents.
+A document_reference is a thin wrapper around a document reference instance.
+simdjson_inline simdjson_result< uint64_t > get_uint64() noexcept
The document_reference instances are used primarily/solely for streams of JSON documents.
A forward-only stream of documents.
-simdjson_inline simdjson_result< value > at(size_t index) &noexcept
Get the value at the given index in the array.
-static constexpr depth_t DOCUMENT_DEPTH
document depth is always 0
+simdjson_inline simdjson_result< value > at(size_t index) &noexcept
Get the value at the given index in the array.
+static constexpr depth_t DOCUMENT_DEPTH
document depth is always 0
simdjson_inline int32_t current_depth() const noexcept
Returns the current depth in the document if in bounds.
-simdjson_inline simdjson_result< array_iterator > begin() &noexcept
Begin array iteration.
-simdjson_inline simdjson_result< size_t > count_fields() &noexcept
This method scans the object and counts the number of key-value pairs.
-simdjson_warn_unused simdjson_inline simdjson_result< number > get_number() noexcept
Attempt to parse an ondemand::number.
+simdjson_inline simdjson_result< array_iterator > begin() &noexcept
Begin array iteration.
+simdjson_inline simdjson_result< size_t > count_fields() &noexcept
This method scans the object and counts the number of key-value pairs.
+simdjson_inline simdjson_result< std::string_view > get_string(bool allow_replacement=false) noexcept
Cast this JSON value to a string.
+simdjson_warn_unused simdjson_inline simdjson_result< number > get_number() noexcept
Attempt to parse an ondemand::number.
bool is_alive() noexcept
Some unrecoverable error conditions may render the document instance unusable.
-simdjson_inline simdjson_result< bool > get_bool() noexcept
Cast this JSON value to a bool.
+simdjson_inline simdjson_result< bool > get_bool() noexcept
Cast this JSON value to a bool.
simdjson_inline simdjson_result< object > get_object() &noexcept
Cast this JSON value to an object.
simdjson_inline simdjson_result< uint64_t > get_uint64() noexcept
Cast this JSON value to an unsigned integer.
-simdjson_inline bool is_negative() noexcept
Checks whether the document is a negative number.
+simdjson_inline bool is_negative() noexcept
Checks whether the document is a negative number.
simdjson_inline document() noexcept=default
Create a new invalid document.
simdjson_result< const char * > current_location() noexcept
Returns the current location in the document if in bounds.
-simdjson_inline simdjson_result< std::string_view > raw_json_token() noexcept
Get the raw JSON for this token.
+simdjson_inline simdjson_result< std::string_view > raw_json_token() noexcept
Get the raw JSON for this token.
simdjson_inline simdjson_result< uint64_t > get_uint64_in_string() noexcept
Cast this JSON value (inside string) to an unsigned integer.
-simdjson_inline simdjson_result< bool > is_null() noexcept
Checks if this JSON value is null.
+simdjson_inline simdjson_result< bool > is_null() noexcept
Checks if this JSON value is null.
simdjson_inline simdjson_result< int64_t > get_int64() noexcept
Cast this JSON value to a signed integer.
-simdjson_inline simdjson_result< value > at_pointer(std::string_view json_pointer) noexcept
Get the value associated with the given JSON pointer.
-simdjson_inline simdjson_result< json_type > type() noexcept
Get the type of this JSON value.
-simdjson_inline simdjson_result< array_iterator > end() &noexcept
Sentinel representing the end of the array.
-simdjson_inline simdjson_result< T > get() &noexcept
Get this value as the given type.
+simdjson_inline simdjson_result< value > at_pointer(std::string_view json_pointer) noexcept
Get the value associated with the given JSON pointer.
+simdjson_inline simdjson_result< json_type > type() noexcept
Get the type of this JSON value.
+simdjson_inline simdjson_result< array_iterator > end() &noexcept
Sentinel representing the end of the array.
+simdjson_inline simdjson_result< T > get() &noexcept
Get this value as the given type.
simdjson_inline simdjson_result< double > get_double_in_string() noexcept
Cast this JSON value (inside string) to a double.
-json_iterator iter
Current position in the document.
+json_iterator iter
Current position in the document.
simdjson_inline simdjson_result< double > get_double() noexcept
Cast this JSON value to a double.
std::string to_debug_string() noexcept
Returns debugging information.
void rewind() noexcept
Reset the iterator inside the document instance so we are pointing back at the beginning of the docum...
-simdjson_inline simdjson_result< std::string_view > raw_json() noexcept
Consumes the document and returns a string_view instance corresponding to the document as represented...
-simdjson_inline simdjson_result< value > find_field_unordered(std::string_view key) &noexcept
Look up a field by name on an object, without regard to key order.
+simdjson_inline simdjson_result< std::string_view > raw_json() noexcept
Consumes the document and returns a string_view instance corresponding to the document as represented...
+simdjson_inline simdjson_result< value > find_field_unordered(std::string_view key) &noexcept
Look up a field by name on an object, without regard to key order.
simdjson_inline simdjson_result< int64_t > get_int64_in_string() noexcept
Cast this JSON value (inside string) to a signed integer.
-simdjson_inline simdjson_result< size_t > count_elements() &noexcept
This method scans the array and counts the number of elements.
+simdjson_inline simdjson_result< size_t > count_elements() &noexcept
This method scans the array and counts the number of elements.
simdjson_inline simdjson_result< value > get_value() noexcept
Cast this JSON value to a value when the document is an object or an array.
-simdjson_inline simdjson_result< value > find_field(std::string_view key) &noexcept
Look up a field by name on an object (order-sensitive).
-simdjson_inline simdjson_result< number_type > get_number_type() noexcept
Determine the number type (integer or floating-point number) as quickly as possible.
-simdjson_inline error_code consume() noexcept
Consumes the document.
-simdjson_inline simdjson_result< bool > is_scalar() noexcept
Checks whether the document is a scalar (string, number, null, Boolean).
-simdjson_inline simdjson_result< std::string_view > get_string() noexcept
Cast this JSON value to a string.
+simdjson_inline simdjson_result< value > find_field(std::string_view key) &noexcept
Look up a field by name on an object (order-sensitive).
+simdjson_inline simdjson_result< number_type > get_number_type() noexcept
Determine the number type (integer or floating-point number) as quickly as possible.
+simdjson_inline error_code consume() noexcept
Consumes the document.
+simdjson_inline simdjson_result< bool > is_scalar() noexcept
Checks whether the document is a scalar (string, number, null, Boolean).
+simdjson_inline simdjson_result< std::string_view > get_wobbly_string() noexcept
Cast this JSON value to a string.
simdjson_inline simdjson_result< array > get_array() &noexcept
Cast this JSON value to an array.
simdjson_inline error_code get(T &out) &noexcept
Get this value as the given type.
-simdjson_inline simdjson_result< bool > is_integer() noexcept
Checks whether the document is an integer number.
-simdjson_inline simdjson_result< raw_json_string > get_raw_json_string() noexcept
Cast this JSON value to a raw_json_string.
+simdjson_inline simdjson_result< bool > is_integer() noexcept
Checks whether the document is an integer number.
+simdjson_inline simdjson_result< raw_json_string > get_raw_json_string() noexcept
Cast this JSON value to a raw_json_string.
A JSON field (key/value pair) in an object.
A forward-only JSON object field iterator.
A string escaped per JSON rules, terminated with quote (").
@@ -476,8 +481,8 @@ $(document).ready(function(){initNavTree('generic_2ondemand_2document_8h_source.
-
-
+
+
The result of a simdjson operation that could fail.
simdjson_inline error_code error() const noexcept
The error.
simdjson_warn_unused simdjson_inline error_code get(T &value) &&noexcept
Move the value to the provided variable.
diff --git a/generic_2ondemand_2document__stream-inl_8h_source.html b/generic_2ondemand_2document__stream-inl_8h_source.html
index b2438a795..efb8d7b93 100644
--- a/generic_2ondemand_2document__stream-inl_8h_source.html
+++ b/generic_2ondemand_2document__stream-inl_8h_source.html
@@ -471,7 +471,7 @@ $(document).ready(function(){initNavTree('generic_2ondemand_2document__stream-in
size_t truncated_bytes() const noexcept
After iterating through the stream, this method returns the number of bytes that were not parsed at t...
simdjson_inline iterator begin() noexcept
Start iterating the documents in the stream.
simdjson_inline document_stream() noexcept
Construct an uninitialized document_stream.
-json_iterator iter
Current position in the document.
+json_iterator iter
Current position in the document.
A JSON fragment iterator.
We want to support argument-dependent lookup (ADL).
error_code
All possible errors returned by simdjson.
diff --git a/generic_2ondemand_2object_8h_source.html b/generic_2ondemand_2object_8h_source.html
index fbc4b43b1..0ed991b90 100644
--- a/generic_2ondemand_2object_8h_source.html
+++ b/generic_2ondemand_2object_8h_source.html
@@ -181,7 +181,7 @@ $(document).ready(function(){initNavTree('generic_2ondemand_2object_8h_source.ht
error_code
All possible errors returned by simdjson.
The result of a simdjson operation that could fail.
-
+
The result of a simdjson operation that could fail.
simdjson_inline error_code error() const noexcept
The error.
simdjson_inline T & value() &noexcept(false)
Get the result value.
diff --git a/generic_2ondemand_2parser-inl_8h_source.html b/generic_2ondemand_2parser-inl_8h_source.html
index ece595f16..dbf21a395 100644
--- a/generic_2ondemand_2parser-inl_8h_source.html
+++ b/generic_2ondemand_2parser-inl_8h_source.html
@@ -209,34 +209,43 @@ $(document).ready(function(){initNavTree('generic_2ondemand_2parser-inl_8h_sourc
-
-
+
+ 120 uint8_t *end =
implementation->parse_string(in.buf, dst, allow_replacement);
122 std::string_view result(
reinterpret_cast<const char *
>(dst), end-dst);
-
-
-
-
-
-
- 133 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::parser>::simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::parser &&value) noexcept
- 134 : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::parser>(std::forward<SIMDJSON_IMPLEMENTATION::ondemand::parser>(value)) {}
- 135 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::parser>::simdjson_result(
error_code error) noexcept
- 136 : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::parser>(error) {}
-
-
+
+
+
+ 130 std::string_view result(
reinterpret_cast<const char *
>(dst), end-dst);
+
+
+
+
+
+
+
+
+
+
+ 141 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::parser>::simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::parser &&value) noexcept
+ 142 : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::parser>(std::forward<SIMDJSON_IMPLEMENTATION::ondemand::parser>(value)) {}
+ 143 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::parser>::simdjson_result(
error_code error) noexcept
+ 144 : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::parser>(error) {}
+
+
A forward-only stream of documents.
simdjson_inline size_t max_capacity() const noexcept
The maximum capacity of this parser (the largest document it is allowed to process).
simdjson_warn_unused simdjson_result< document > iterate(padded_string_view json) &noexcept
Start iterating an on-demand JSON document.
+simdjson_inline simdjson_result< std::string_view > unescape(raw_json_string in, uint8_t *&dst, bool allow_replacement=false) const noexcept
Unescape this JSON string, replacing \ with \, with newline, etc.
parser(size_t max_capacity=SIMDJSON_MAXSIZE_BYTES) noexcept
Create a JSON parser.
simdjson_result< document_stream > iterate_many(const uint8_t *buf, size_t len, size_t batch_size=DEFAULT_BATCH_SIZE) noexcept
Parse a buffer containing many JSON documents.
+simdjson_inline simdjson_result< std::string_view > unescape_wobbly(raw_json_string in, uint8_t *&dst) const noexcept
Unescape this JSON string, replacing \ with \, with newline, etc.
simdjson_inline size_t max_depth() const noexcept
The maximum depth of this parser (the most deeply nested objects and arrays it can process).
simdjson_warn_unused error_code allocate(size_t capacity, size_t max_depth=DEFAULT_MAX_DEPTH) noexcept
Ensure this parser has enough memory to process JSON documents up to capacity bytes in length and max...
-simdjson_inline simdjson_result< std::string_view > unescape(raw_json_string in, uint8_t *&dst) const noexcept
Unescape this JSON string, replacing \ with \, with newline, etc.
simdjson_inline size_t capacity() const noexcept
The capacity of this parser (the largest document it can process).
A string escaped per JSON rules, terminated with quote (").
An implementation of simdjson for a particular CPU architecture.
diff --git a/generic_2ondemand_2parser_8h_source.html b/generic_2ondemand_2parser_8h_source.html
index d5096d705..a797fb682 100644
--- a/generic_2ondemand_2parser_8h_source.html
+++ b/generic_2ondemand_2parser_8h_source.html
@@ -149,47 +149,52 @@ $(document).ready(function(){initNavTree('generic_2ondemand_2parser_8h_source.ht
-
-
- 287 std::unique_ptr<internal::dom_parser_implementation>
implementation{};
-
- 289 size_t _max_capacity;
-
- 291 std::unique_ptr<uint8_t[]> string_buf{};
- 292 #if SIMDJSON_DEVELOPMENT_CHECKS
- 293 std::unique_ptr<token_position[]> start_positions{};
-
-
- 296 friend class json_iterator;
- 297 friend class document_stream;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+ 315 size_t _max_capacity;
+
+ 317 std::unique_ptr<uint8_t[]> string_buf{};
+ 318 #if SIMDJSON_DEVELOPMENT_CHECKS
+ 319 std::unique_ptr<token_position[]> start_positions{};
+
+
+ 322 friend class json_iterator;
+ 323 friend class document_stream;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
A forward-only stream of documents.
A JSON fragment iterator.
simdjson_inline size_t max_capacity() const noexcept
The maximum capacity of this parser (the largest document it is allowed to process).
simdjson_warn_unused simdjson_result< document > iterate(padded_string_view json) &noexcept
Start iterating an on-demand JSON document.
+simdjson_inline simdjson_result< std::string_view > unescape(raw_json_string in, uint8_t *&dst, bool allow_replacement=false) const noexcept
Unescape this JSON string, replacing \ with \, with newline, etc.
~parser() noexcept=default
Deallocate the JSON parser.
parser(size_t max_capacity=SIMDJSON_MAXSIZE_BYTES) noexcept
Create a JSON parser.
simdjson_result< document_stream > iterate_many(const uint8_t *buf, size_t len, size_t batch_size=DEFAULT_BATCH_SIZE) noexcept
Parse a buffer containing many JSON documents.
+simdjson_inline simdjson_result< std::string_view > unescape_wobbly(raw_json_string in, uint8_t *&dst) const noexcept
Unescape this JSON string, replacing \ with \, with newline, etc.
simdjson_inline size_t max_depth() const noexcept
The maximum depth of this parser (the most deeply nested objects and arrays it can process).
simdjson_warn_unused error_code allocate(size_t capacity, size_t max_depth=DEFAULT_MAX_DEPTH) noexcept
Ensure this parser has enough memory to process JSON documents up to capacity bytes in length and max...
-simdjson_inline simdjson_result< std::string_view > unescape(raw_json_string in, uint8_t *&dst) const noexcept
Unescape this JSON string, replacing \ with \, with newline, etc.
simdjson_inline size_t capacity() const noexcept
The capacity of this parser (the largest document it can process).
A string escaped per JSON rules, terminated with quote (").
An implementation of simdjson for a particular CPU architecture.
diff --git a/generic_2ondemand_2serialization-inl_8h_source.html b/generic_2ondemand_2serialization-inl_8h_source.html
index 1efb7bd44..847245d10 100644
--- a/generic_2ondemand_2serialization-inl_8h_source.html
+++ b/generic_2ondemand_2serialization-inl_8h_source.html
@@ -306,7 +306,7 @@ $(document).ready(function(){initNavTree('generic_2ondemand_2serialization-inl_8
A forward-only JSON array.
-A document_reference is a thin wrapper around a document reference instance.
+A document_reference is a thin wrapper around a document reference instance.
A forward-only JSON object field iterator.
An ephemeral JSON value returned during iteration.
diff --git a/generic_2ondemand_2serialization_8h_source.html b/generic_2ondemand_2serialization_8h_source.html
index 2e02526ac..166e319d8 100644
--- a/generic_2ondemand_2serialization_8h_source.html
+++ b/generic_2ondemand_2serialization_8h_source.html
@@ -129,7 +129,7 @@ $(document).ready(function(){initNavTree('generic_2ondemand_2serialization_8h_so
A forward-only JSON array.
-A document_reference is a thin wrapper around a document reference instance.
+A document_reference is a thin wrapper around a document reference instance.
A forward-only JSON object field iterator.
An ephemeral JSON value returned during iteration.
diff --git a/group__scalar.html b/group__scalar.html
index db9210d7f..7356c6112 100644
--- a/group__scalar.html
+++ b/group__scalar.html
@@ -96,9 +96,12 @@ $(document).ready(function(){initNavTree('group__scalar.html',''); initResizable
|
-|
-simdjson_warn_unused simdjson_inline simdjson_result< std::string_view > | simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator::get_string () noexcept |
-| |
+|
+simdjson_warn_unused simdjson_inline simdjson_result< std::string_view > | simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator::get_string (bool allow_replacement) noexcept |
+| |
+|
+simdjson_warn_unused simdjson_inline simdjson_result< std::string_view > | simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator::get_wobbly_string () noexcept |
+| |
|
simdjson_warn_unused simdjson_inline simdjson_result< raw_json_string > | simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator::get_raw_json_string () noexcept |
| |
@@ -138,9 +141,12 @@ simdjson_warn_unused simdjson_inline
simdjson_warn_unused simdjson_inline simdjson_result< number > | simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator::get_number () noexcept |
| |
-|
-simdjson_warn_unused simdjson_inline simdjson_result< std::string_view > | simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator::get_root_string (bool check_trailing) noexcept |
-| |
+|
+simdjson_warn_unused simdjson_inline simdjson_result< std::string_view > | simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator::get_root_string (bool check_trailing, bool allow_replacement) noexcept |
+| |
+|
+simdjson_warn_unused simdjson_inline simdjson_result< std::string_view > | simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator::get_root_wobbly_string (bool check_trailing) noexcept |
+| |
|
simdjson_warn_unused simdjson_inline simdjson_result< raw_json_string > | simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator::get_root_raw_json_string (bool check_trailing) noexcept |
| |
diff --git a/internal_2dom__parser__implementation_8h_source.html b/internal_2dom__parser__implementation_8h_source.html
index ca117e2d4..b44b9b49d 100644
--- a/internal_2dom__parser__implementation_8h_source.html
+++ b/internal_2dom__parser__implementation_8h_source.html
@@ -128,68 +128,70 @@ $(document).ready(function(){initNavTree('internal_2dom__parser__implementation_
103 simdjson_warn_unused
virtual error_code stage2_next(dom::document &doc) noexcept = 0;
- 119 simdjson_warn_unused
virtual uint8_t *parse_string(
const uint8_t *src, uint8_t *dst)
const noexcept = 0;
-
- 133 virtual error_code set_capacity(
size_t capacity) noexcept = 0;
-
- 144 virtual error_code set_max_depth(
size_t max_depth) noexcept = 0;
-
- 149 virtual ~dom_parser_implementation() =
default;
-
- 152 uint32_t n_structural_indexes{0};
- 154 std::unique_ptr<uint32_t[]> structural_indexes{};
- 156 uint32_t next_structural_index{0};
-
- 163 simdjson_inline
size_t capacity() const noexcept;
-
- 170 simdjson_inline
size_t max_depth() const noexcept;
-
- 180 simdjson_warn_unused inline
error_code allocate(
size_t capacity,
size_t max_depth) noexcept;
+ 120 simdjson_warn_unused
virtual uint8_t *parse_string(
const uint8_t *src, uint8_t *dst,
bool allow_replacement)
const noexcept = 0;
+
+ 136 simdjson_warn_unused
virtual uint8_t *parse_wobbly_string(
const uint8_t *src, uint8_t *dst)
const noexcept = 0;
+
+ 150 virtual error_code set_capacity(
size_t capacity) noexcept = 0;
+
+ 161 virtual error_code set_max_depth(
size_t max_depth) noexcept = 0;
+
+ 166 virtual ~dom_parser_implementation() =
default;
+
+ 169 uint32_t n_structural_indexes{0};
+ 171 std::unique_ptr<uint32_t[]> structural_indexes{};
+ 173 uint32_t next_structural_index{0};
+
+ 180 simdjson_inline
size_t capacity() const noexcept;
-
-
-
-
- 196 size_t _max_depth{0};
-
-
- 199 simdjson_inline dom_parser_implementation() noexcept;
- 200 simdjson_inline dom_parser_implementation(dom_parser_implementation &&other) noexcept;
- 201 simdjson_inline dom_parser_implementation &operator=(dom_parser_implementation &&other) noexcept;
-
- 203 simdjson_inline dom_parser_implementation(const dom_parser_implementation &) noexcept = delete;
- 204 simdjson_inline dom_parser_implementation &operator=(const dom_parser_implementation &other) noexcept = delete;
-
-
- 207 simdjson_inline dom_parser_implementation::dom_parser_implementation() noexcept = default;
- 208 simdjson_inline dom_parser_implementation::dom_parser_implementation(dom_parser_implementation &&other) noexcept = default;
- 209 simdjson_inline dom_parser_implementation &dom_parser_implementation::operator=(dom_parser_implementation &&other) noexcept = default;
-
- 211 simdjson_inline
size_t dom_parser_implementation::capacity() const noexcept {
-
-
+ 187 simdjson_inline
size_t max_depth() const noexcept;
+
+ 197 simdjson_warn_unused inline
error_code allocate(
size_t capacity,
size_t max_depth) noexcept;
+
+
+
+
+
+ 213 size_t _max_depth{0};
- 215 simdjson_inline
size_t dom_parser_implementation::max_depth() const noexcept {
-
-
-
-
- 220 inline error_code dom_parser_implementation::allocate(
size_t capacity,
size_t max_depth) noexcept {
- 221 if (this->max_depth() != max_depth) {
-
- 223 if (err) {
return err; }
-
- 225 if (_capacity != capacity) {
-
- 227 if (err) {
return err; }
-
-
+
+ 216 simdjson_inline dom_parser_implementation() noexcept;
+ 217 simdjson_inline dom_parser_implementation(dom_parser_implementation &&other) noexcept;
+ 218 simdjson_inline dom_parser_implementation &operator=(dom_parser_implementation &&other) noexcept;
+
+ 220 simdjson_inline dom_parser_implementation(const dom_parser_implementation &) noexcept = delete;
+ 221 simdjson_inline dom_parser_implementation &operator=(const dom_parser_implementation &other) noexcept = delete;
+
+
+ 224 simdjson_inline dom_parser_implementation::dom_parser_implementation() noexcept = default;
+ 225 simdjson_inline dom_parser_implementation::dom_parser_implementation(dom_parser_implementation &&other) noexcept = default;
+ 226 simdjson_inline dom_parser_implementation &dom_parser_implementation::operator=(dom_parser_implementation &&other) noexcept = default;
+
+ 228 simdjson_inline
size_t dom_parser_implementation::capacity() const noexcept {
+
-
-
-
-
+ 232 simdjson_inline
size_t dom_parser_implementation::max_depth() const noexcept {
+
+
+
+
+ 237 inline error_code dom_parser_implementation::allocate(
size_t capacity,
size_t max_depth) noexcept {
+ 238 if (this->max_depth() != max_depth) {
+
+ 240 if (err) {
return err; }
+
+ 242 if (_capacity != capacity) {
+
+ 244 if (err) {
return err; }
+
+
+
+
+
+
+
+
We want to support argument-dependent lookup (ADL).
bool is_streaming(stage1_mode mode)
Returns true if mode == streaming_partial or mode == streaming_final.
error_code
All possible errors returned by simdjson.
diff --git a/json__iterator-inl_8h_source.html b/json__iterator-inl_8h_source.html
index f90c072a6..68fa42c97 100644
--- a/json__iterator-inl_8h_source.html
+++ b/json__iterator-inl_8h_source.html
@@ -409,72 +409,76 @@ $(document).ready(function(){initNavTree('json__iterator-inl_8h_source.html','')
316 return token.position();
- 319 simdjson_inline simdjson_result<std::string_view> json_iterator::unescape(raw_json_string in) noexcept {
- 320 return parser->unescape(in, _string_buf_loc);
+ 319 simdjson_inline simdjson_result<std::string_view> json_iterator::unescape(raw_json_string in,
bool allow_replacement) noexcept {
+ 320 return parser->unescape(in, _string_buf_loc, allow_replacement);
- 323 simdjson_inline
void json_iterator::reenter_child(token_position position,
depth_t child_depth) noexcept {
- 324 SIMDJSON_ASSUME(child_depth >= 1 && child_depth < INT32_MAX);
- 325 SIMDJSON_ASSUME(_depth == child_depth - 1);
- 326 #if SIMDJSON_DEVELOPMENT_CHECKS
- 327 #ifndef SIMDJSON_CLANG_VISUAL_STUDIO
- 328 SIMDJSON_ASSUME(
size_t(child_depth) < parser->max_depth());
- 329 SIMDJSON_ASSUME(position >= parser->start_positions[child_depth]);
-
-
- 332 token.set_position(position);
- 333 _depth = child_depth;
-
-
- 336 #if SIMDJSON_DEVELOPMENT_CHECKS
-
- 338 simdjson_inline token_position json_iterator::start_position(
depth_t depth)
const noexcept {
- 339 SIMDJSON_ASSUME(
size_t(depth) < parser->max_depth());
- 340 return size_t(depth) < parser->max_depth() ? parser->start_positions[depth] : 0;
-
-
- 343 simdjson_inline
void json_iterator::set_start_position(
depth_t depth, token_position position) noexcept {
- 344 SIMDJSON_ASSUME(
size_t(depth) < parser->max_depth());
- 345 if(
size_t(depth) < parser->max_depth()) { parser->start_positions[depth] = position; }
-
-
-
-
-
- 351 simdjson_inline
error_code json_iterator::optional_error(
error_code _error,
const char *message) noexcept {
-
- 353 logger::log_error(*
this, message);
-
-
-
-
- 358 simdjson_warn_unused simdjson_inline
bool json_iterator::copy_to_buffer(
const uint8_t *json, uint32_t max_len, uint8_t (&tmpbuf)[N]) noexcept {
-
- 360 if((N < max_len) || (N == 0)) {
return false; }
-
-
-
-
-
-
-
- 368 std::memcpy(tmpbuf, json, max_len);
- 369 tmpbuf[max_len] =
' ';
-
-
-
-
-
-
+ 323 simdjson_inline simdjson_result<std::string_view> json_iterator::unescape_wobbly(raw_json_string in) noexcept {
+ 324 return parser->unescape_wobbly(in, _string_buf_loc);
+
+
+ 327 simdjson_inline
void json_iterator::reenter_child(token_position position,
depth_t child_depth) noexcept {
+ 328 SIMDJSON_ASSUME(child_depth >= 1 && child_depth < INT32_MAX);
+ 329 SIMDJSON_ASSUME(_depth == child_depth - 1);
+ 330 #if SIMDJSON_DEVELOPMENT_CHECKS
+ 331 #ifndef SIMDJSON_CLANG_VISUAL_STUDIO
+ 332 SIMDJSON_ASSUME(
size_t(child_depth) < parser->max_depth());
+ 333 SIMDJSON_ASSUME(position >= parser->start_positions[child_depth]);
+
+
+ 336 token.set_position(position);
+ 337 _depth = child_depth;
+
+
+ 340 #if SIMDJSON_DEVELOPMENT_CHECKS
+
+ 342 simdjson_inline token_position json_iterator::start_position(
depth_t depth)
const noexcept {
+ 343 SIMDJSON_ASSUME(
size_t(depth) < parser->max_depth());
+ 344 return size_t(depth) < parser->max_depth() ? parser->start_positions[depth] : 0;
+
+
+ 347 simdjson_inline
void json_iterator::set_start_position(
depth_t depth, token_position position) noexcept {
+ 348 SIMDJSON_ASSUME(
size_t(depth) < parser->max_depth());
+ 349 if(
size_t(depth) < parser->max_depth()) { parser->start_positions[depth] = position; }
+
+
+
+
+
+ 355 simdjson_inline
error_code json_iterator::optional_error(
error_code _error,
const char *message) noexcept {
+
+ 357 logger::log_error(*
this, message);
+
+
+
+
+ 362 simdjson_warn_unused simdjson_inline
bool json_iterator::copy_to_buffer(
const uint8_t *json, uint32_t max_len, uint8_t (&tmpbuf)[N]) noexcept {
+
+ 364 if((N < max_len) || (N == 0)) {
return false; }
+
+
+
+
+
+
+
+ 372 std::memcpy(tmpbuf, json, max_len);
+ 373 tmpbuf[max_len] =
' ';
+
+
-
-
- 379 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::json_iterator>::simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::json_iterator &&value) noexcept
- 380 : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::json_iterator>(std::forward<SIMDJSON_IMPLEMENTATION::ondemand::json_iterator>(value)) {}
- 381 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::json_iterator>::simdjson_result(
error_code error) noexcept
- 382 : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::json_iterator>(error) {}
-
-
+
+
+
+
+
+
+ 383 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::json_iterator>::simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::json_iterator &&value) noexcept
+ 384 : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::json_iterator>(std::forward<SIMDJSON_IMPLEMENTATION::ondemand::json_iterator>(value)) {}
+ 385 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::json_iterator>::simdjson_result(
error_code error) noexcept
+ 386 : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::json_iterator>(error) {}
+
+
int32_t depth_t
Represents the depth of a JSON value (number of nested arrays/objects).
We want to support argument-dependent lookup (ADL).
const char * error_message(error_code error) noexcept
Get the error message for the given error code.
diff --git a/json__iterator_8h_source.html b/json__iterator_8h_source.html
index d9fa6434e..fadda5906 100644
--- a/json__iterator_8h_source.html
+++ b/json__iterator_8h_source.html
@@ -164,55 +164,56 @@ $(document).ready(function(){initNavTree('json__iterator_8h_source.html',''); in
241 template<
int N> simdjson_warn_unused simdjson_inline
bool copy_to_buffer(const uint8_t *json, uint32_t max_len, uint8_t (&tmpbuf)[N]) noexcept;
243 simdjson_inline token_position position() const noexcept;
- 249 simdjson_inline simdjson_result<std::string_view> unescape(raw_json_string in) noexcept;
- 250 simdjson_inline
void reenter_child(token_position position,
depth_t child_depth) noexcept;
-
- 252 #if SIMDJSON_DEVELOPMENT_CHECKS
- 253 simdjson_inline token_position start_position(
depth_t depth)
const noexcept;
- 254 simdjson_inline
void set_start_position(
depth_t depth, token_position position) noexcept;
-
-
-
- 258 inline std::string
to_string() const noexcept;
-
- 263 inline simdjson_result<const
char *> current_location() noexcept;
-
- 269 inline
void rewind() noexcept;
- 276 inline
bool balanced() const noexcept;
-
- 278 simdjson_inline json_iterator(const uint8_t *buf, ondemand::parser *parser) noexcept;
- 280 simdjson_inline token_position last_position() const noexcept;
- 282 simdjson_inline token_position end_position() const noexcept;
- 284 simdjson_inline token_position end() const noexcept;
-
- 286 friend class document;
- 287 friend class document_stream;
-
-
-
- 291 friend class raw_json_string;
-
- 293 friend class value_iterator;
- 294 friend simdjson_inline
void logger::log_line(const json_iterator &iter, const
char *title_prefix, const
char *title, std::string_view detail,
int delta,
int depth_delta) noexcept;
- 295 friend simdjson_inline
void logger::log_line(const json_iterator &iter, token_position index,
depth_t depth, const
char *title_prefix, const
char *title, std::string_view detail) noexcept;
-
-
-
-
-
-
-
-
-
-
-
- 307 simdjson_inline
simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::json_iterator &&value) noexcept;
-
-
-
-
-
-
+ 249 simdjson_inline simdjson_result<std::string_view> unescape(raw_json_string in,
bool allow_replacement) noexcept;
+ 250 simdjson_inline simdjson_result<std::string_view> unescape_wobbly(raw_json_string in) noexcept;
+ 251 simdjson_inline
void reenter_child(token_position position,
depth_t child_depth) noexcept;
+
+ 253 #if SIMDJSON_DEVELOPMENT_CHECKS
+ 254 simdjson_inline token_position start_position(
depth_t depth)
const noexcept;
+ 255 simdjson_inline
void set_start_position(
depth_t depth, token_position position) noexcept;
+
+
+
+ 259 inline std::string
to_string() const noexcept;
+
+ 264 inline simdjson_result<const
char *> current_location() noexcept;
+
+ 270 inline
void rewind() noexcept;
+ 277 inline
bool balanced() const noexcept;
+
+ 279 simdjson_inline json_iterator(const uint8_t *buf, ondemand::parser *parser) noexcept;
+ 281 simdjson_inline token_position last_position() const noexcept;
+ 283 simdjson_inline token_position end_position() const noexcept;
+ 285 simdjson_inline token_position end() const noexcept;
+
+ 287 friend class document;
+ 288 friend class document_stream;
+
+
+
+ 292 friend class raw_json_string;
+
+ 294 friend class value_iterator;
+ 295 friend simdjson_inline
void logger::log_line(const json_iterator &iter, const
char *title_prefix, const
char *title, std::string_view detail,
int delta,
int depth_delta) noexcept;
+ 296 friend simdjson_inline
void logger::log_line(const json_iterator &iter, token_position index,
depth_t depth, const
char *title_prefix, const
char *title, std::string_view detail) noexcept;
+
+
+
+
+
+
+
+
+
+
+
+ 308 simdjson_inline
simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::json_iterator &&value) noexcept;
+
+
+
+
+
+
@ object
A JSON object ( { "a": 1, "b" 2, ... } )
@ array
A JSON array ( [ 1, 2, 3 ... ] )
int32_t depth_t
Represents the depth of a JSON value (number of nested arrays/objects).
diff --git a/md_doc_basics.html b/md_doc_basics.html
index 43ac9573d..23ab4902b 100644
--- a/md_doc_basics.html
+++ b/md_doc_basics.html
@@ -219,6 +219,7 @@ Parser, Document and JSON Scope
During the iterate call, the original JSON text is never modified–only read. After you are done with the document, the source (whether file or string) can be safely discarded.
For best performance, a parser instance should be reused over several files: otherwise you will needlessly reallocate memory, an expensive process. It is also possible to avoid entirely memory allocations during parsing when using simdjson. See our performance notes for details.
+If you need to have several documents active at once, you should have several parser instances.
C++11 Support and string_view
The simdjson library builds on compilers supporting the C++11 standard. It is also a strict requirement: we have no plan to support older C++ compilers.
@@ -240,7 +241,7 @@ Using the Parsed JSON
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.
- Validate What You Use: When calling
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.
-- Extracting Values: You can cast a JSON element to a native type:
double(element). This works for std::string_view, double, uint64_t, int64_t, bool, ondemand::object and ondemand::array. We also have explicit methods such as get_string(), get_double(), get_uint64(), get_int64(), get_bool(), get_object() and get_array(). After a cast or an explicit method, the number, string or boolean will be parsed, or the initial [ or { will be verified. An exception is thrown if the cast is not possible. The get_string() returns a valid UTF-8 string, after unescaping characters as needed: unmatched surrogate pairs are treated as an error. When calling get_uint64() and get_int64(), if the number does not fit in a corresponding 64-bit integer type, it is also considered an error.
+- Extracting Values: You can cast a JSON element to a native type:
double(element). This works for std::string_view, double, uint64_t, int64_t, bool, ondemand::object and ondemand::array. We also have explicit methods such as get_string(), get_double(), get_uint64(), get_int64(), get_bool(), get_object() and get_array(). After a cast or an explicit method, the number, string or boolean will be parsed, or the initial [ or { will be verified. An exception is thrown if the cast is not possible. The get_string() returns a valid UTF-8 string, after unescaping characters as needed: unmatched surrogate pairs are treated as an error unless you pass true (get_string(true)) as a parameter to get replacement characters where errors occur. If you somehow need to access non-UTF-8 strings in a lossless manner (e.g., if you strings contain unpaired surrogates), you may use the get_wobbly_string() function to get a string in the WTF-8 format. Or you may pass true as a parameter to the When calling get_uint64() and get_int64(), if the number does not fit in a corresponding 64-bit integer type, it is also considered an error.
IMPORTANT NOTE: values can only be parsed once. Since documents are iterators, once you have parsed a value (such as by casting to double), you cannot get at it again. It is an error to call get_string() twice on an object (or to cast an object twice to std::string_view).
diff --git a/navtreedata.js b/navtreedata.js
index 70ebb7d6a..ce1695a53 100644
--- a/navtreedata.js
+++ b/navtreedata.js
@@ -183,11 +183,11 @@ var NAVTREE =
var NAVTREEINDEX =
[
"",
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#aef6872e07743217fe2e2abe790a21d4c",
-"classsimdjson_1_1dom_1_1object_1_1iterator.html#a9f49fe89534f63d3d2543d5d4bad3180",
-"logger-inl_8h.html#abaf0200be757924fd5a89834e3b758f0",
-"parsedjson__iterator_8h_source.html",
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html#ab025cd6b344dc3dd6673b42663976de3"
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ae3d80f8e7f31c319fe6ee09c0860df83",
+"classsimdjson_1_1dom_1_1object_1_1iterator.html#a688f6c7f451602bb3385a93252c0828a",
+"logger-inl_8h.html#a92b499d3d191a02e913f90de4f641e2e",
+"padded__string__view-inl_8h_source.html",
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator_01_4.html#aaa161d4006fe118c8a2125f861ac0f51"
];
var SYNCONMSG = 'click to disable panel synchronisation';
diff --git a/navtreeindex0.js b/navtreeindex0.js
index 44f8ceed2..adc234562 100644
--- a/navtreeindex0.js
+++ b/navtreeindex0.js
@@ -22,23 +22,24 @@ var NAVTREEINDEX0 =
"builtin_8h_source.html":[12,0,0,0,12],
"classes.html":[11,1],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html":[11,0,0,1,2],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a016ecd16f2dc440d6e9bb5642c5c9a03":[11,0,0,1,2,10],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a016ecd16f2dc440d6e9bb5642c5c9a03":[11,0,0,1,2,11],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a0ed9fe2a61acbdeb9b7a337e362dda2b":[11,0,0,1,2,3],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a132a95e1147b80c2533d1632185a6a09":[11,0,0,1,2,15],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a132a95e1147b80c2533d1632185a6a09":[11,0,0,1,2,16],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a16d6277f8deeeae553505b2c4056dea7":[11,0,0,1,2,0],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a228ebe3ee63b409a21949f27a0db034e":[11,0,0,1,2,7],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a228ebe3ee63b409a21949f27a0db034e":[11,0,0,1,2,8],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a2667a623246d69262e685124020fcbb1":[11,0,0,1,2,5],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a2b9fab70b6f9846d16aca7dc1aeb7251":[11,0,0,1,2,2],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a403c396b3c28815786eaa70bbbbd505a":[11,0,0,1,2,1],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a4089d6265ec845fd85acd2db0973b858":[11,0,0,1,2,13],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a4089d6265ec845fd85acd2db0973b858":[11,0,0,1,2,14],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a4bdd98e83c105a18882ede9cd7cd0525":[11,0,0,1,2,4],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a63068d5e284fab7c458727a1f2c074c7":[11,0,0,1,2,8],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a961b4870710d5ee1da938c4923d6f68d":[11,0,0,1,2,12],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a9b82f3273bb2f2f83b8e085b7d9c6613":[11,0,0,1,2,14],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a9c67c6c782f1296319a58ec1586f2329":[11,0,0,1,2,16],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#ae08bd3dd4f8343db8d5adf805cb00a8d":[11,0,0,1,2,11],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#aecfcdd437419319dcee518adab3a8d15":[11,0,0,1,2,6],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#af4e2f7842cf7307636ac00b3dbb188d0":[11,0,0,1,2,9],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a63068d5e284fab7c458727a1f2c074c7":[11,0,0,1,2,9],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a958d7f2d6a9d6dc8fb30405cb3456b25":[11,0,0,1,2,7],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a961b4870710d5ee1da938c4923d6f68d":[11,0,0,1,2,13],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a9b82f3273bb2f2f83b8e085b7d9c6613":[11,0,0,1,2,15],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a9c67c6c782f1296319a58ec1586f2329":[11,0,0,1,2,17],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a9f2b05e0da9c654808f3f699b4146ee9":[11,0,0,1,2,6],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#ae08bd3dd4f8343db8d5adf805cb00a8d":[11,0,0,1,2,12],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#af4e2f7842cf7307636ac00b3dbb188d0":[11,0,0,1,2,10],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html":[11,0,0,1,0,0],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a1c97143f7637414d737d58daeec2eb84":[11,0,0,1,0,0,2],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a240a8118a5b6f76962425134cc284764":[11,0,0,1,0,0,1],
@@ -69,52 +70,53 @@ var NAVTREEINDEX0 =
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html":[11,0,0,1,0,2],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a01c6bde0574654dc22ea219c3b3dbf51":[11,0,0,1,0,2,4],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a0256ad407d9babf298b8345804a0e80d":[11,0,0,1,0,2,13],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a08307c0a5552cf8cb06613ed1de48eac":[11,0,0,1,0,2,45],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a08307c0a5552cf8cb06613ed1de48eac":[11,0,0,1,0,2,46],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a1919a4ca6418c94ed54f026fbbda6f1d":[11,0,0,1,0,2,10],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a1a450826deb3ba982c9f0ec6208cb246":[11,0,0,1,0,2,6],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a1d52c7414c906bcb4a617e8473abe806":[11,0,0,1,0,2,57],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a1d52c7414c906bcb4a617e8473abe806":[11,0,0,1,0,2,58],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a24fd6a8aa158b80d851e3a57c9fef642":[11,0,0,1,0,2,9],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a2900a7dbf657a1f322e7926d136e3e63":[11,0,0,1,0,2,62],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a2900a7dbf657a1f322e7926d136e3e63":[11,0,0,1,0,2,63],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a2ae4c160def21463b0ab214a36c0a78e":[11,0,0,1,0,2,36],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a2b04a9cd8c4ff9b591dc3f2db95c69cf":[11,0,0,1,0,2,31],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a2b80aa5b6842cffbfda3443353deef9d":[11,0,0,1,0,2,1],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a2bbfe68b06975a98c12f46bcfbe7189d":[11,0,0,1,0,2,22],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a2bbfe68b06975a98c12f46bcfbe7189d":[11,0,0,1,0,2,21],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a30e8df60ace82837a17e52d5e457ac52":[11,0,0,1,0,2,51],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a3170300bc331577a1435bb238cf3faff":[11,0,0,1,0,2,40],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a361d226087a5153d5fcee19e128c764c":[11,0,0,1,0,2,56],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a3d4dcacb8171b99f783396bb6a337c65":[11,0,0,1,0,2,71],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a403473bb5329fca6defc6299fb45b780":[11,0,0,1,0,2,69],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a30e8df60ace82837a17e52d5e457ac52":[11,0,0,1,0,2,52],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a3170300bc331577a1435bb238cf3faff":[11,0,0,1,0,2,41],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a361d226087a5153d5fcee19e128c764c":[11,0,0,1,0,2,57],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a3d4dcacb8171b99f783396bb6a337c65":[11,0,0,1,0,2,72],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a403473bb5329fca6defc6299fb45b780":[11,0,0,1,0,2,70],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a41eaac87582a465b4c9f9834701a837d":[11,0,0,1,0,2,26],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a4620d364a637031ef38661f9fb215ebc":[11,0,0,1,0,2,33],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a4bd4ffdde5ffcde60ec4b63e66746b5c":[11,0,0,1,0,2,60],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a4bd4ffdde5ffcde60ec4b63e66746b5c":[11,0,0,1,0,2,61],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a4d221850d045f1e7ada4dfaaee0e145c":[11,0,0,1,0,2,37],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5083f65b71d7540ea785ec2b52604267":[11,0,0,1,0,2,42],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5083f65b71d7540ea785ec2b52604267":[11,0,0,1,0,2,43],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a54cd729a715a09bc9e706b7640233427":[11,0,0,1,0,2,0],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a55603828cddcd2b6cfec1a487f0cd137":[11,0,0,1,0,2,11],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a58802e77b6fb25a3d2ec8a4d2482f9bf":[11,0,0,1,0,2,59],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a58802e77b6fb25a3d2ec8a4d2482f9bf":[11,0,0,1,0,2,60],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5cb63d14a99509d751f4be45063fec95":[11,0,0,1,0,2,38],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5d50aa0d396fc49855d3c0c571b07a25":[11,0,0,1,0,2,48],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5ed59f01a0d4ad253f0e1c1f995ed0a7":[11,0,0,1,0,2,43],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a674f0683b36df385b61f03175743e840":[11,0,0,1,0,2,54],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5d50aa0d396fc49855d3c0c571b07a25":[11,0,0,1,0,2,49],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5ed59f01a0d4ad253f0e1c1f995ed0a7":[11,0,0,1,0,2,44],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a674f0683b36df385b61f03175743e840":[11,0,0,1,0,2,55],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a6abc08fb48868bdc5104c885c46ced82":[11,0,0,1,0,2,29],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a6cd27fe6dc9062b5380db757d49c3f7b":[11,0,0,1,0,2,49],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a6cd27fe6dc9062b5380db757d49c3f7b":[11,0,0,1,0,2,50],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a74484485f4a3d8dce5943b0cb60ac815":[11,0,0,1,0,2,5],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a77bdebf4d2105efdd123cbf0a4906b1e":[11,0,0,1,0,2,65],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a78411bf36298e3468ac83f3562b75d83":[11,0,0,1,0,2,50],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a77bdebf4d2105efdd123cbf0a4906b1e":[11,0,0,1,0,2,66],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a78411bf36298e3468ac83f3562b75d83":[11,0,0,1,0,2,51],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a7a79c0e85c9d40b53f0d4daeeb24111a":[11,0,0,1,0,2,12],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a7df7ba140c9d6398fef2c6963da82230":[11,0,0,1,0,2,46],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a7df7ba140c9d6398fef2c6963da82230":[11,0,0,1,0,2,47],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a7fe39fb73b6a4d9b1c97742dc2ae7b98":[11,0,0,1,0,2,20],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a847db7139319155ef5fa2d4af7063163":[11,0,0,1,0,2,52],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a847db7139319155ef5fa2d4af7063163":[11,0,0,1,0,2,53],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a85e4b5250e316cc602b1b05bd097f771":[11,0,0,1,0,2,28],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a8b5ff9d9b350c3111dbfa39d080d3e7a":[11,0,0,1,0,2,18],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a8df43e73a52118b91681a13fc897d098":[11,0,0,1,0,2,3],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a95786ae7a3190b8229358893476561f9":[11,0,0,1,0,2,19],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a969e1000319391cd2bee3aed88481500":[11,0,0,1,0,2,75],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a96cd9e5da7256c58b4af1227e9f61afb":[11,0,0,1,0,2,66],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a969e1000319391cd2bee3aed88481500":[11,0,0,1,0,2,76],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a96cd9e5da7256c58b4af1227e9f61afb":[11,0,0,1,0,2,67],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a9909be358c78a64bc9ab7e11e3f2a47b":[11,0,0,1,0,2,27],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a9afdfb30ac2aacabce09a5c9d7fd375a":[11,0,0,1,0,2,64],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a9cc053001e8246e6e65bbcbf3db035c4":[11,0,0,1,0,2,61],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aa3a27654a19c386ad0c775cff258cf0c":[11,0,0,1,0,2,58],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a9afdfb30ac2aacabce09a5c9d7fd375a":[11,0,0,1,0,2,65],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a9cc053001e8246e6e65bbcbf3db035c4":[11,0,0,1,0,2,62],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aa3a27654a19c386ad0c775cff258cf0c":[11,0,0,1,0,2,59],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aa89d66d993d0bffcbb85e303ad3950c2":[11,0,0,1,0,2,16],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aac4a4837e66c8f1243722ab04ce45436":[11,0,0,1,0,2,30],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aad9a78e414f27d9dbdce321939df6480":[11,0,0,1,0,2,2],
@@ -122,77 +124,78 @@ var NAVTREEINDEX0 =
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ab89eda435b4a68be578fcb5c3da73980":[11,0,0,1,0,2,39],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ab919032e611f7f4a1e8cc9eb47ad4dea":[11,0,0,1,0,2,14],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#abb3a7cc6f2391d26f27a28c16ca38c9c":[11,0,0,1,0,2,32],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#abe64d01448a884f15d0855a38ec40066":[11,0,0,1,0,2,63],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#abe64d01448a884f15d0855a38ec40066":[11,0,0,1,0,2,64],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ac16e0e51de3ce97fbd3fd0b1f947d552":[11,0,0,1,0,2,7],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ac2ea8f4340d02d9062f81419da47500b":[11,0,0,1,0,2,44],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ac2ea8f4340d02d9062f81419da47500b":[11,0,0,1,0,2,45],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ac8cfa8a237aa1297ecdff4bd1b02a7c1":[11,0,0,1,0,2,35],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#acd53905ae10cba58b4337aefe648aec6":[11,0,0,1,0,2,70],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ad12185e1993ebcad73eb5ce82f5de8f7":[11,0,0,1,0,2,53],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ad1520136c41afff5cd24bf19d9bf76e5":[11,0,0,1,0,2,73],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ad4cca6de25737030e609419001f39186":[11,0,0,1,0,2,68],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#addfd2bc654d13906456ce44168d2ab68":[11,0,0,1,0,2,36],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ae052e098bfbfde398845060a8d4f572f":[11,0,0,1,0,2,47],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#acd53905ae10cba58b4337aefe648aec6":[11,0,0,1,0,2,71],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ad12185e1993ebcad73eb5ce82f5de8f7":[11,0,0,1,0,2,54],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ad1520136c41afff5cd24bf19d9bf76e5":[11,0,0,1,0,2,74],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ad4cca6de25737030e609419001f39186":[11,0,0,1,0,2,69],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ae052e098bfbfde398845060a8d4f572f":[11,0,0,1,0,2,48],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ae1db0154ef901ed1e8fb581bb9df6899":[11,0,0,1,0,2,40],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ae517777c3fe348036e27a357812599ef":[11,0,0,1,0,2,15],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ae5604a7f239d8acb6db8c100330f0d9d":[11,0,0,1,0,2,55],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ae5cda98fa74051d037c0c444c67efb15":[11,0,0,1,0,2,74],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ae5604a7f239d8acb6db8c100330f0d9d":[11,0,0,1,0,2,56],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ae5cda98fa74051d037c0c444c67efb15":[11,0,0,1,0,2,75],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aea545f106413a9bc01cd19e6630a580d":[11,0,0,1,0,2,25],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aec7be9f74f64c08fae57eaf36044f7a9":[11,0,0,1,0,2,67],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aec7be9f74f64c08fae57eaf36044f7a9":[11,0,0,1,0,2,68],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#af0af8707b5623e17c3bc9a329b7c4fa3":[11,0,0,1,0,2,24],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#af0af8707b5623e17c3bc9a329b7c4fa3":[11,0,0,1,0,2,23],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#af47e11e9925fd5d3d8a43cf0f7773992":[11,0,0,1,0,2,41],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#af47e11e9925fd5d3d8a43cf0f7773992":[11,0,0,1,0,2,42],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#af6bd49bdc5649d5790412e7cbc3bda67":[11,0,0,1,0,2,17],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#afa3370b930da937911cf61ec9b047c56":[11,0,0,1,0,2,34],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#afa9e1aecb407dd3e5fb179e3293c74ec":[11,0,0,1,0,2,72],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#afa9e1aecb407dd3e5fb179e3293c74ec":[11,0,0,1,0,2,73],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html":[11,0,0,1,0,3],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a063bffcae0c43b9bbfc5fbad1e3d5ce7":[11,0,0,1,0,3,49],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a06a16c1552dba29c05e9c04a04f048c4":[11,0,0,1,0,3,45],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a063bffcae0c43b9bbfc5fbad1e3d5ce7":[11,0,0,1,0,3,50],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a06a16c1552dba29c05e9c04a04f048c4":[11,0,0,1,0,3,46],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a111e40e80bdb1d1668e5dcd2104df0fd":[11,0,0,1,0,3,17],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a1323b5ff763435dac92308f3d7fbbb79":[11,0,0,1,0,3,8],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a15bc891896726595062910787cd83ca0":[11,0,0,1,0,3,2],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a1e103fd39e8b03b2800520a35ff87067":[11,0,0,1,0,3,14],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a20ff7e15fb47ebcddb22caa4d95e8bee":[11,0,0,1,0,3,9],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a28976d7c111d73aa8854e29d8ce9ae4f":[11,0,0,1,0,3,7],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a3643d42beba9c8395fc8678f61d4abd1":[11,0,0,1,0,3,40],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a3992b4034cae481a6327f306bcb95fd3":[11,0,0,1,0,3,47],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a40d89015165021b282f1dced6ac4fef2":[11,0,0,1,0,3,35],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a46b1be5c6c28cc6ce325dde7aef333c5":[11,0,0,1,0,3,36],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a475c294822e53601cfa81ff988e312f7":[11,0,0,1,0,3,38],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a3643d42beba9c8395fc8678f61d4abd1":[11,0,0,1,0,3,41],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a3992b4034cae481a6327f306bcb95fd3":[11,0,0,1,0,3,48],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a40d89015165021b282f1dced6ac4fef2":[11,0,0,1,0,3,36],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a46b1be5c6c28cc6ce325dde7aef333c5":[11,0,0,1,0,3,37],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a475c294822e53601cfa81ff988e312f7":[11,0,0,1,0,3,39],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a47b30548f71aca4317bdc4c6955cd719":[11,0,0,1,0,3,26],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a5368cab93ab6e2101cc79f821b347e38":[11,0,0,1,0,3,12],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a58f51ea5631d725ba220d8a0038fabb3":[11,0,0,1,0,3,25],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a70388310dda561543af00fda3686fdf8":[11,0,0,1,0,3,28],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a779798aa7b1ac3485b7f99c9dd7b2277":[11,0,0,1,0,3,42],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a77cae667cb6d51f068934a0fa7fc8a48":[11,0,0,1,0,3,44],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a7bfebc3db33cd306ce47e0914e45f311":[11,0,0,1,0,3,29],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a779798aa7b1ac3485b7f99c9dd7b2277":[11,0,0,1,0,3,43],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a77cae667cb6d51f068934a0fa7fc8a48":[11,0,0,1,0,3,45],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a7bfebc3db33cd306ce47e0914e45f311":[11,0,0,1,0,3,30],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a8645c724ff217f11d09a69a3eb32355b":[11,0,0,1,0,3,4],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a8b5aa3ba538a00b6994e08c73aa3cd7b":[11,0,0,1,0,3,23],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a90173c5537066e30269ad866bf405f9e":[11,0,0,1,0,3,24],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a9090f793b7825131d0ee091e42c5dfd4":[11,0,0,1,0,3,25],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a9143df905cf4360434f13f51e7888bb6":[11,0,0,1,0,3,10],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a9166cac415950ee5b49c6b7fe9848b37":[11,0,0,1,0,3,43],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a9166cac415950ee5b49c6b7fe9848b37":[11,0,0,1,0,3,44],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a927085d5ba40b9b2965264977244ab11":[11,0,0,1,0,3,21],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a977a06bd5c952970ec1d75bf6867a06f":[11,0,0,1,0,3,13],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a9b781ec894d5f53f6e5c3a86e8a7e5e4":[11,0,0,1,0,3,37],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a9b8084a06fd6c8b0662d378e4f8f8760":[11,0,0,1,0,3,41],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a9b781ec894d5f53f6e5c3a86e8a7e5e4":[11,0,0,1,0,3,38],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a9b8084a06fd6c8b0662d378e4f8f8760":[11,0,0,1,0,3,42],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a9d1ddeb339540ee9c6f00b9061f5e908":[11,0,0,1,0,3,1],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a9f1a96015a210b1b349ccd5cd37af7f5":[11,0,0,1,0,3,48],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#aa5a025095c9d89e777fe00b003ec09d2":[11,0,0,1,0,3,33],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a9f1a96015a210b1b349ccd5cd37af7f5":[11,0,0,1,0,3,49],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#aa5a025095c9d89e777fe00b003ec09d2":[11,0,0,1,0,3,34],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#ab0058006c986910b2bb2c49cd6a420e5":[11,0,0,1,0,3,22],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#ab3a04fe9744d604964f4e782225dfb30":[11,0,0,1,0,3,19],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#ab6b572642eb8d84f12a32d881499011d":[11,0,0,1,0,3,5],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#ac18dc949283225dd5ae7e0a6e74b4563":[11,0,0,1,0,3,6],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#ac735941fc906d1eaf1c825bf715eda2f":[11,0,0,1,0,3,30],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#ac735941fc906d1eaf1c825bf715eda2f":[11,0,0,1,0,3,31],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#ace95574ee1e4b4fe00baff0b63cc422e":[11,0,0,1,0,3,29],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#adde79c6a65389798d45d189f4580a4ea":[11,0,0,1,0,3,15],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#ade1e70006d43416bb0322c409947e57d":[11,0,0,1,0,3,27],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#adec459feebebf8af6c5b999b9489b420":[11,0,0,1,0,3,46],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#adec459feebebf8af6c5b999b9489b420":[11,0,0,1,0,3,47],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#adeed306c0ddd988d89f2d8488dcab0e4":[11,0,0,1,0,3,20],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#adf841c95ea88ad247d3cdd3d74303523":[11,0,0,1,0,3,39],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#ae2f02ac7a3753b5ec51af17d3f0a7ba6":[11,0,0,1,0,3,32],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#adf841c95ea88ad247d3cdd3d74303523":[11,0,0,1,0,3,40],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#ae2f02ac7a3753b5ec51af17d3f0a7ba6":[11,0,0,1,0,3,33],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#ae7397a55b94d369ace8aff2913ed2467":[11,0,0,1,0,3,3],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#ae75d7a3c0304784f8fd7a606a1502481":[11,0,0,1,0,3,11],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#aea2acb45845d4cc400f302f6082a0b07":[11,0,0,1,0,3,34],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#aea2acb45845d4cc400f302f6082a0b07":[11,0,0,1,0,3,35],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#aebe8ba5478ce02ef3703ab2ec1c20491":[11,0,0,1,0,3,16],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#aef16a749859e032b4c21cf6d399ee9d3":[11,0,0,1,0,3,18],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#af737df31cc6466027676bdf70b60542d":[11,0,0,1,0,3,31],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#af737df31cc6466027676bdf70b60542d":[11,0,0,1,0,3,32],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#af7ac8c3602f1562a4b135d76ebfd3cdb":[11,0,0,1,0,3,0],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html":[11,0,0,1,0,4],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#a0a0d40ed80767c01232a6aacb6258b2b":[11,0,0,1,0,4,5],
@@ -222,11 +225,11 @@ var NAVTREEINDEX0 =
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#acc70c0658a48285f116ff0e43fdb9167":[11,0,0,1,0,4,0,2],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#adee0c974b66f734b3b67f5600bbe594f":[11,0,0,1,0,4,0,0],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html":[11,0,0,1,0,5],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a49425afaaf0874b07c1f8e4ed1d86cf0":[11,0,0,1,0,5,3],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a4f49d8e89feb3ca69cf85ce2aea80c0f":[11,0,0,1,0,5,2],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a56fd10d90f6366433ca435a221830af7":[11,0,0,1,0,5,6],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a73a389f50a576d2a5eb315dbd8abced7":[11,0,0,1,0,5,4],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a7d565f0d79dec8bf19c307e464452650":[11,0,0,1,0,5,1],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a8e655ba1a0fd26809821f77aac355b7c":[11,0,0,1,0,5,3],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a9415aecf3526ad6081be495c9be61b43":[11,0,0,1,0,5,0],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#ac91f0ec4a1944cba079924b366424f89":[11,0,0,1,0,5,7],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#ad5f688629f86f80dff49cab2270b1967":[11,0,0,1,0,5,5],
@@ -246,8 +249,5 @@ var NAVTREEINDEX0 =
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ad742392a9223e096f1be16b7bbf20ca8":[11,0,0,1,0,7,6],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#adbe7322f665109b9816c5bcb9c10a9cb":[11,0,0,1,0,7,10],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#add102ee85423a75e22e4d7ca9a3eaacd":[11,0,0,1,0,7,4],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ae0bc6b9803e0c989e9defaf3edcaaae4":[11,0,0,1,0,7,16],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ae3d80f8e7f31c319fe6ee09c0860df83":[11,0,0,1,0,7,2],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ae5cda98fa74051d037c0c444c67efb15":[11,0,0,1,0,7,19],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#aeb4a70edd1808f36210460ed410e8dae":[11,0,0,1,0,7,3]
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ae0bc6b9803e0c989e9defaf3edcaaae4":[11,0,0,1,0,7,16]
};
diff --git a/navtreeindex1.js b/navtreeindex1.js
index 7f7a10f95..5c710760e 100644
--- a/navtreeindex1.js
+++ b/navtreeindex1.js
@@ -1,5 +1,8 @@
var NAVTREEINDEX1 =
{
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ae3d80f8e7f31c319fe6ee09c0860df83":[11,0,0,1,0,7,2],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ae5cda98fa74051d037c0c444c67efb15":[11,0,0,1,0,7,19],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#aeb4a70edd1808f36210460ed410e8dae":[11,0,0,1,0,7,3],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#aef6872e07743217fe2e2abe790a21d4c":[11,0,0,1,0,7,5],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#affa38e7fd0778672e7dd02916a97ad21":[11,0,0,1,0,7,9],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator.html":[11,0,0,1,0,8],
@@ -17,9 +20,10 @@ var NAVTREEINDEX1 =
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a1bbd95fc94265d49d901abe0fb43a828":[11,0,0,1,0,9,17],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a1df3e757ec1e2206da217b3165fcbded":[11,0,0,1,0,9,23],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a1fea49ba6513317ea94d87926b6f085d":[11,0,0,1,0,9,24],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a27714b0095b036a169cabebdc1031937":[11,0,0,1,0,9,25],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a33a8602b990e1f5ef44600c2b57a4e9d":[11,0,0,1,0,9,13],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a39b026c659b2082f017dccf9423d7fd3":[11,0,0,1,0,9,15],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a403473bb5329fca6defc6299fb45b780":[11,0,0,1,0,9,26],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a403473bb5329fca6defc6299fb45b780":[11,0,0,1,0,9,27],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a483fec1e0bf7f96ecf91cdbf8ac7948d":[11,0,0,1,0,9,6],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a4a144d96ad06a2295137dd0e5b7dcc1d":[11,0,0,1,0,9,3],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a4befd18e2d838ff3abf06725f5ad04fb":[11,0,0,1,0,9,10],
@@ -29,14 +33,14 @@ var NAVTREEINDEX1 =
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a649b3a768b347d8d1b7ebb2295ba3670":[11,0,0,1,0,9,18],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a76abd4d78f0c26d80d3bf436ce212e00":[11,0,0,1,0,9,0],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a792ec7912794a7a657a0b3b5e88fd0cf":[11,0,0,1,0,9,8],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a7a0d2e5fad4f195a866b6baa15846d39":[11,0,0,1,0,9,27],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a7a0d2e5fad4f195a866b6baa15846d39":[11,0,0,1,0,9,28],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a8043fd848a5655b8f6d09a0edf2df5d7":[11,0,0,1,0,9,7],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a8f2dee06242abddb70eb7c07b50cef0b":[11,0,0,1,0,9,19],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a926e145e3ffb2b1024646dd56bc938e4":[11,0,0,1,0,9,26],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a9dd8dfaa40f0faec56e31f976e4c2c94":[11,0,0,1,0,9,21],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#aa99bf33b4b552e718ac579deb289e07d":[11,0,0,1,0,9,1],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#ab6201f2eab41026e722a237d280b8fe1":[11,0,0,1,0,9,4],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#ab6d7a29db94911b348780e51b7568e8b":[11,0,0,1,0,9,16],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#ac69b3aef12e3490c9fbd0a580004e015":[11,0,0,1,0,9,25],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#aec2c883af898053ab8e5eca8e9e870ae":[11,0,0,1,0,9,5],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#afca7657cdcad3b96c40cb92be572d939":[11,0,0,1,0,9,14],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html":[11,0,0,1,0,10],
@@ -53,61 +57,62 @@ var NAVTREEINDEX1 =
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#acf64001cc9961cd01712211b778e760b":[11,0,0,1,0,10,1],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#affa14023a66c65f906ee3e673443d943":[11,0,0,1,0,10,6],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html":[11,0,0,1,0,11],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a04f1c591d93d834377a9cb916c90e09b":[11,0,0,1,0,11,32],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a04f1c591d93d834377a9cb916c90e09b":[11,0,0,1,0,11,33],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a06258e49f2dbb910beeaf6814ff7e071":[11,0,0,1,0,11,8],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a1588a173b15a20cacf77a24d07032d83":[11,0,0,1,0,11,11],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a1a77f08478a14ca724b3087050f39370":[11,0,0,1,0,11,54],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a2701c283de019e56624e930e936e0df0":[11,0,0,1,0,11,31],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a1a77f08478a14ca724b3087050f39370":[11,0,0,1,0,11,55],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a2701c283de019e56624e930e936e0df0":[11,0,0,1,0,11,32],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a2f46079741d1ba316de32bb9765c5082":[11,0,0,1,0,11,24],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a2fdcc51cac791c3a2f4c970764bc0155":[11,0,0,1,0,11,17],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a30f182e71d3c13d2656ba5983862be57":[11,0,0,1,0,11,37],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a37427e768435aafef5af097b8cc3cfec":[11,0,0,1,0,11,44],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a30f182e71d3c13d2656ba5983862be57":[11,0,0,1,0,11,38],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a37427e768435aafef5af097b8cc3cfec":[11,0,0,1,0,11,45],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a3bde0795cb309f3e51b8388fbafc1fe4":[11,0,0,1,0,11,25],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a3d4dcacb8171b99f783396bb6a337c65":[11,0,0,1,0,11,51],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a3d4dcacb8171b99f783396bb6a337c65":[11,0,0,1,0,11,52],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a40af3c6af7d18241c1c4017df8557d86":[11,0,0,1,0,11,16],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a481e2b0b216d29038ddca3242a7047ad":[11,0,0,1,0,11,5],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a53f99cedf58e62c1382a4d5a585e05a0":[11,0,0,1,0,11,36],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a53f99cedf58e62c1382a4d5a585e05a0":[11,0,0,1,0,11,37],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a547e99f2f430ca39bf4060d090f45ff7":[11,0,0,1,0,11,22],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a55f04607ee4e718294a572f9b6ad94cc":[11,0,0,1,0,11,6],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a5ab2c9c7d29a7a6c09f78930b0100836":[11,0,0,1,0,11,30],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a5ab2c9c7d29a7a6c09f78930b0100836":[11,0,0,1,0,11,31],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a6ed00f1588087b2d0de926c4599366d6":[11,0,0,1,0,11,9],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a7188b9843c2b3b3050c54b52d5b6886f":[11,0,0,1,0,11,1],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a7c20332b4481f29ace969e40cfce5f5f":[11,0,0,1,0,11,49],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a821e11bc3b6b3f16fa7d6b15c77c17d3":[11,0,0,1,0,11,46],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a85d69a32b4b95f353abe6214ecc98619":[11,0,0,1,0,11,39],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a7c20332b4481f29ace969e40cfce5f5f":[11,0,0,1,0,11,50],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a821e11bc3b6b3f16fa7d6b15c77c17d3":[11,0,0,1,0,11,47],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a85d69a32b4b95f353abe6214ecc98619":[11,0,0,1,0,11,40],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a88d1cdc3124965d707754af4fcfae7f9":[11,0,0,1,0,11,4],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a89519c599fd938a6a750262111fc5757":[11,0,0,1,0,11,38],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8af215f249821f44ee33eb3cf2dac53b":[11,0,0,1,0,11,43],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a89519c599fd938a6a750262111fc5757":[11,0,0,1,0,11,39],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8af215f249821f44ee33eb3cf2dac53b":[11,0,0,1,0,11,44],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8bc2eb9eeeb7e2e0b82c23ed4d254933":[11,0,0,1,0,11,29],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8bcd64ae6b4d204c4b6b2a8420e0270c":[11,0,0,1,0,11,7],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8c2618e57ec26501dd93ff8fd5cc2191":[11,0,0,1,0,11,33],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8c2618e57ec26501dd93ff8fd5cc2191":[11,0,0,1,0,11,34],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8d50c7c494ab9acc4a644cc77dd058f9":[11,0,0,1,0,11,15],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8e5f2ff46639e6c1cffb73d4e071e491":[11,0,0,1,0,11,40],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8e96b60b036694be5ef43fb564ab8d1b":[11,0,0,1,0,11,27],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a930e15defdcb082793fb22fe5b161de5":[11,0,0,1,0,11,42],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a93756146a65e835b9358cc652dc53396":[11,0,0,1,0,11,34],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8e5f2ff46639e6c1cffb73d4e071e491":[11,0,0,1,0,11,41],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a930e15defdcb082793fb22fe5b161de5":[11,0,0,1,0,11,43],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a93756146a65e835b9358cc652dc53396":[11,0,0,1,0,11,35],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a9410649e14bebb51b38b8a2a520482a8":[11,0,0,1,0,11,12],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a9a5ebeb4a79fa1d997f9f3478370a57e":[11,0,0,1,0,11,19],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a9ad87deba0e08e8188b26485164889fb":[11,0,0,1,0,11,53],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a9ad87deba0e08e8188b26485164889fb":[11,0,0,1,0,11,54],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a9d574e04d5dfde0bf99dea4926232fe4":[11,0,0,1,0,11,27],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a9e6d45a591ea72658a5ce2508a851cd0":[11,0,0,1,0,11,10],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aa0e07db099e651d3e5279872683cb7dd":[11,0,0,1,0,11,18],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aa89c4aceb7e052a1f7ff7e4058b651f1":[11,0,0,1,0,11,23],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aadd2f646a3231d407948bf5f3da46528":[11,0,0,1,0,11,3],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ab7bb6749f40bec70c8a1a31edad53c1d":[11,0,0,1,0,11,30],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ab7e4b28c0d9637cf1b04554d99c0e3b3":[11,0,0,1,0,11,21],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ab96f6c19a1866863a110e8bcc93e0392":[11,0,0,1,0,11,0],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ac39965b3006b8f19ed576ce99b7534c5":[11,0,0,1,0,11,47],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ac39965b3006b8f19ed576ce99b7534c5":[11,0,0,1,0,11,48],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ac8b8d7d4bc7958363b7f0d380b248a4f":[11,0,0,1,0,11,20],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ac91f0ec4a1944cba079924b366424f89":[11,0,0,1,0,11,52],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ac91f0ec4a1944cba079924b366424f89":[11,0,0,1,0,11,53],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ac96ed29f08a2c948c1f02d99b88546c4":[11,0,0,1,0,11,14],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aca8b183c4e674a5b4ade8f6d2780f815":[11,0,0,1,0,11,26],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#acb1514c00a87027c5eb3c81171a3b874":[11,0,0,1,0,11,13],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#acc369e813e7cf4a97564bb0d85f76db3":[11,0,0,1,0,11,2],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#acd53905ae10cba58b4337aefe648aec6":[11,0,0,1,0,11,50],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#acd53905ae10cba58b4337aefe648aec6":[11,0,0,1,0,11,51],
"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#adaa7bb2c9b3988476f3317ddda27e22d":[11,0,0,1,0,11,28],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ae75aa0d09a10682fd30dc4e8e25d0a73":[11,0,0,1,0,11,45],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aec7be9f74f64c08fae57eaf36044f7a9":[11,0,0,1,0,11,48],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#af7b51d9048d388235f3936c8fa30a2f7":[11,0,0,1,0,11,35],
-"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#afb7be23d4f1006d5eae234d8c8c8d286":[11,0,0,1,0,11,41],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ae75aa0d09a10682fd30dc4e8e25d0a73":[11,0,0,1,0,11,46],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aec7be9f74f64c08fae57eaf36044f7a9":[11,0,0,1,0,11,49],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#af7b51d9048d388235f3936c8fa30a2f7":[11,0,0,1,0,11,36],
+"classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#afb7be23d4f1006d5eae234d8c8c8d286":[11,0,0,1,0,11,42],
"classsimdjson_1_1dom_1_1array.html":[11,0,0,0,0],
"classsimdjson_1_1dom_1_1array.html#a0602f94f596fa800408eeb034b5850ab":[11,0,0,0,0,8],
"classsimdjson_1_1dom_1_1array.html#a26e66312190e016c22093292974490ff":[11,0,0,0,0,6],
@@ -244,10 +249,5 @@ var NAVTREEINDEX1 =
"classsimdjson_1_1dom_1_1object_1_1iterator.html#a498ffa7fca4164634f87ff2ef0905f8b":[11,0,0,0,4,0,14],
"classsimdjson_1_1dom_1_1object_1_1iterator.html#a54a99dcf9c422d5c24f3c570b6d9b6e4":[11,0,0,0,4,0,5],
"classsimdjson_1_1dom_1_1object_1_1iterator.html#a5ad1b60fd5df56d9fdb8bce1e08de88f":[11,0,0,0,4,0,8],
-"classsimdjson_1_1dom_1_1object_1_1iterator.html#a5c80355d967cce16eab942a8d8351c7b":[11,0,0,0,4,0,2],
-"classsimdjson_1_1dom_1_1object_1_1iterator.html#a688f6c7f451602bb3385a93252c0828a":[11,0,0,0,4,0,10],
-"classsimdjson_1_1dom_1_1object_1_1iterator.html#a6d335de77b8c5b731566e48f6cacd95d":[11,0,0,0,4,0,7],
-"classsimdjson_1_1dom_1_1object_1_1iterator.html#a7b4a7d3017744fec3aa4252967f73204":[11,0,0,0,4,0,16],
-"classsimdjson_1_1dom_1_1object_1_1iterator.html#a83b3c467632c017400f95ff05d2367b3":[11,0,0,0,4,0,12],
-"classsimdjson_1_1dom_1_1object_1_1iterator.html#a951609ca7a164b499ff19adbe2de7983":[11,0,0,0,4,0,4]
+"classsimdjson_1_1dom_1_1object_1_1iterator.html#a5c80355d967cce16eab942a8d8351c7b":[11,0,0,0,4,0,2]
};
diff --git a/navtreeindex2.js b/navtreeindex2.js
index ad3d2a1e2..faa7430f1 100644
--- a/navtreeindex2.js
+++ b/navtreeindex2.js
@@ -1,5 +1,10 @@
var NAVTREEINDEX2 =
{
+"classsimdjson_1_1dom_1_1object_1_1iterator.html#a688f6c7f451602bb3385a93252c0828a":[11,0,0,0,4,0,10],
+"classsimdjson_1_1dom_1_1object_1_1iterator.html#a6d335de77b8c5b731566e48f6cacd95d":[11,0,0,0,4,0,7],
+"classsimdjson_1_1dom_1_1object_1_1iterator.html#a7b4a7d3017744fec3aa4252967f73204":[11,0,0,0,4,0,16],
+"classsimdjson_1_1dom_1_1object_1_1iterator.html#a83b3c467632c017400f95ff05d2367b3":[11,0,0,0,4,0,12],
+"classsimdjson_1_1dom_1_1object_1_1iterator.html#a951609ca7a164b499ff19adbe2de7983":[11,0,0,0,4,0,4],
"classsimdjson_1_1dom_1_1object_1_1iterator.html#a9f49fe89534f63d3d2543d5d4bad3180":[11,0,0,0,4,0,1],
"classsimdjson_1_1dom_1_1object_1_1iterator.html#aa26738ad08b7de3be4621a75863118ab":[11,0,0,0,4,0,11],
"classsimdjson_1_1dom_1_1object_1_1iterator.html#aaab37cb500deb6ae49a712b8999d6ca3":[11,0,0,0,4,0,13],
@@ -244,10 +249,5 @@ var NAVTREEINDEX2 =
"logger-inl_8h.html#a66e3122a7ae01bfe5f81ecb1bf1814cc":[10,0,0,1,0,0,4],
"logger-inl_8h.html#a6ca1434e6fe03e97dbc88360cc6ea5db":[10,0,0,1,0,0,1],
"logger-inl_8h.html#a720bb462b108c1f9bcaa02cdcdfe6546":[10,0,0,1,0,0,12],
-"logger-inl_8h.html#a7577e5a0dcaf23edf36d162959680a7c":[10,0,0,1,0,0,8],
-"logger-inl_8h.html#a92b499d3d191a02e913f90de4f641e2e":[10,0,0,1,0,0,10],
-"logger-inl_8h.html#aa220611a86e2a544368f650b7f7315fb":[10,0,0,1,0,0,3],
-"logger-inl_8h.html#aaa4c1a2ef6eb08bb02a8ea6e49d2a786":[10,0,0,1,0,0,11],
-"logger-inl_8h.html#ab8082fd58a3d7e115016a3fc52ee8936":[10,0,0,1,0,0,0],
-"logger-inl_8h.html#ab8b9add577d4aba4fc244fa5a5bcb219":[10,0,0,1,0,0,7]
+"logger-inl_8h.html#a7577e5a0dcaf23edf36d162959680a7c":[10,0,0,1,0,0,8]
};
diff --git a/navtreeindex3.js b/navtreeindex3.js
index 48939bfd7..f1862add9 100644
--- a/navtreeindex3.js
+++ b/navtreeindex3.js
@@ -1,5 +1,10 @@
var NAVTREEINDEX3 =
{
+"logger-inl_8h.html#a92b499d3d191a02e913f90de4f641e2e":[10,0,0,1,0,0,10],
+"logger-inl_8h.html#aa220611a86e2a544368f650b7f7315fb":[10,0,0,1,0,0,3],
+"logger-inl_8h.html#aaa4c1a2ef6eb08bb02a8ea6e49d2a786":[10,0,0,1,0,0,11],
+"logger-inl_8h.html#ab8082fd58a3d7e115016a3fc52ee8936":[10,0,0,1,0,0,0],
+"logger-inl_8h.html#ab8b9add577d4aba4fc244fa5a5bcb219":[10,0,0,1,0,0,7],
"logger-inl_8h.html#abaf0200be757924fd5a89834e3b758f0":[10,0,0,1,0,0,13],
"logger-inl_8h.html#ad5975f8a32d2daea904160b7ac6fd9cc":[10,0,0,1,0,0,9],
"logger-inl_8h.html#aee467b07dcf64f1282096914a1214053":[10,0,0,1,0,0,5],
@@ -244,10 +249,5 @@ var NAVTREEINDEX3 =
"ondemand-inl_8h_source.html":[12,0,0,0,3,7],
"ondemand_8h_source.html":[12,0,0,0,3,8],
"padded__string-inl_8h_source.html":[12,0,0,0,26],
-"padded__string_8h_source.html":[12,0,0,0,27],
-"padded__string__view-inl_8h_source.html":[12,0,0,0,28],
-"padded__string__view_8h_source.html":[12,0,0,0,29],
-"pages.html":[],
-"parsedjson_8h_source.html":[12,0,0,0,1,11],
-"parsedjson__iterator-inl_8h_source.html":[12,0,0,0,1,12]
+"padded__string_8h_source.html":[12,0,0,0,27]
};
diff --git a/navtreeindex4.js b/navtreeindex4.js
index 2dfdd1416..f0da560ff 100644
--- a/navtreeindex4.js
+++ b/navtreeindex4.js
@@ -1,5 +1,10 @@
var NAVTREEINDEX4 =
{
+"padded__string__view-inl_8h_source.html":[12,0,0,0,28],
+"padded__string__view_8h_source.html":[12,0,0,0,29],
+"pages.html":[],
+"parsedjson_8h_source.html":[12,0,0,0,1,11],
+"parsedjson__iterator-inl_8h_source.html":[12,0,0,0,1,12],
"parsedjson__iterator_8h_source.html":[12,0,0,0,1,13],
"portability_8h_source.html":[12,0,0,0,30],
"ppc64_2begin_8h_source.html":[12,0,0,0,8,0],
@@ -112,116 +117,118 @@ var NAVTREEINDEX4 =
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator_01_4.html#ade4fad54d7e78d06501c053dbb2fc704":[11,0,0,9,2],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html":[11,0,0,10],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a084c9ea1aaf3848f34ec75c776dd660a":[11,0,0,10,26],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a09cb25b160c9db3f5279ef513db3deac":[11,0,0,10,51],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a0bcbee63db869ac122bed75000b54d46":[11,0,0,10,54],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a10a199e7230688e0177a870dfd34ee99":[11,0,0,10,48],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a09cb25b160c9db3f5279ef513db3deac":[11,0,0,10,52],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a0bcbee63db869ac122bed75000b54d46":[11,0,0,10,55],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a10a199e7230688e0177a870dfd34ee99":[11,0,0,10,49],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a17135304a51a3cf08cc802630f5cc1d0":[11,0,0,10,2],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a1c2749aea938f6f00eec37d098b4a102":[11,0,0,10,29],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a21068ca112785dcf71ac9832250e1740":[11,0,0,10,10],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a24f63365bd58c9f0c6ec1aae438e008d":[11,0,0,10,38],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a2d53b6aa5b0316e08cbc16e6f970d3c8":[11,0,0,10,32],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a32e9d2b26e7c85c77dc3cef0f812ca1b":[11,0,0,10,56],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a371fb9d9879782009c11e547ff79e869":[11,0,0,10,43],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a32e9d2b26e7c85c77dc3cef0f812ca1b":[11,0,0,10,57],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a371fb9d9879782009c11e547ff79e869":[11,0,0,10,44],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a429242515e1139a04142c3f1aa5cbe68":[11,0,0,10,17],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a429242515e1139a04142c3f1aa5cbe68":[11,0,0,10,16],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a458029a37b519f4594dc78812fee8657":[11,0,0,10,34],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a4762f6c497ac46d5c7a130b2f389156d":[11,0,0,10,45],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a4da9f9206bcbc12a8bfb88fdf3473b9f":[11,0,0,10,35],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a50bddd1e9bc10caaabff8ff4d7eb903d":[11,0,0,10,47],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a4762f6c497ac46d5c7a130b2f389156d":[11,0,0,10,46],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a50bddd1e9bc10caaabff8ff4d7eb903d":[11,0,0,10,48],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a50f16db4f51e54d5d1a04af5c0dfefe0":[11,0,0,10,14],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a52332b6ab6b8098fca5d73c575b8f3e7":[11,0,0,10,33],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a55eeb1baf095500e8cf3d97f67e362bd":[11,0,0,10,41],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a55eeb1baf095500e8cf3d97f67e362bd":[11,0,0,10,42],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a567b835f20e2f854f4303e83f4d3bd74":[11,0,0,10,12],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a59a47cbdb4c226a7d33e0315cce62984":[11,0,0,10,39],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a5a4d779ce258cac95b1799f16b49695b":[11,0,0,10,46],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a59a47cbdb4c226a7d33e0315cce62984":[11,0,0,10,40],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a5a4d779ce258cac95b1799f16b49695b":[11,0,0,10,47],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a6024d17789cc49d3147445b3def018f6":[11,0,0,10,21],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a6024d17789cc49d3147445b3def018f6":[11,0,0,10,22],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a61c56912d76a1a730e4cf9b5aea5d69f":[11,0,0,10,37],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a662ec28f78a9fcba046eaa4509efa6a3":[11,0,0,10,40],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a662ec28f78a9fcba046eaa4509efa6a3":[11,0,0,10,41],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a696390da51f64f6955aa43484b2e8c41":[11,0,0,10,27],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a78feffa1a15a0ae2f244e87d89bbe372":[11,0,0,10,1],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a7c2a11edb53792f1a4c6fe2654060380":[11,0,0,10,35],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a87b78dd9ad9dd5fc8f5f1368ef004928":[11,0,0,10,20],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a88d370115d7ac1708b0127fc64ce9b2d":[11,0,0,10,11],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a89e365ab71c3c1e6c52c2bbc914069ef":[11,0,0,10,25],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a9a751f7a061bc6e8d3159556466edbf0":[11,0,0,10,3],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a9fbe143e7d0e23f9c62cbae279c30790":[11,0,0,10,28],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#aad912138afff908ddd2f1ceacc51fb86":[11,0,0,10,5],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#aae2f837578cabf883f3050a88146cbb0":[11,0,0,10,49],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#aae2f837578cabf883f3050a88146cbb0":[11,0,0,10,50],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#ab50c666f3261dc9793bdef557f731f05":[11,0,0,10,18],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#abcb0825900ad9b8ed77b5e8c11b553b1":[11,0,0,10,30],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#abee12ce61b43c3b7c89e0af14fd81f12":[11,0,0,10,6],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#abfee745b54cd29f70a7564e8fade64f9":[11,0,0,10,52],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#abfee745b54cd29f70a7564e8fade64f9":[11,0,0,10,53],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#ac0e966ea81b5a86485e82bcadbad4903":[11,0,0,10,31],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#ac1bc5849809d087f4d4b78482ef0424b":[11,0,0,10,19],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#ac3cf80b50922d31e34a069b45c4e125b":[11,0,0,10,36],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#ac4c6cfbf267a75a8448b7353cb1f53f5":[11,0,0,10,4],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#ac994a43ba5e7fbde29d82c8d437c5fb7":[11,0,0,10,50],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#ad2c7498f364cf7803f83408a8629a5ac":[11,0,0,10,44],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#ac994a43ba5e7fbde29d82c8d437c5fb7":[11,0,0,10,51],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#ad2c7498f364cf7803f83408a8629a5ac":[11,0,0,10,45],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#ad93b76ab3636d40ce75059e0f8653c6f":[11,0,0,10,7],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#ada47799dcb5e64e43851d78d346b1d47":[11,0,0,10,24],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#ada47799dcb5e64e43851d78d346b1d47":[11,0,0,10,23],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#adb70072b98e8c3c650ce695f3e928e66":[11,0,0,10,13],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#adb70072b98e8c3c650ce695f3e928e66":[11,0,0,10,15],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#ae69c9218f418dab3b1aafeb2b6504fab":[11,0,0,10,53],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#ae69c9218f418dab3b1aafeb2b6504fab":[11,0,0,10,54],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#aecc254ac74f3ccd0704813be27c98470":[11,0,0,10,8],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#aeda745db35d2b64a7956a70872242fcb":[11,0,0,10,42],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#aeda745db35d2b64a7956a70872242fcb":[11,0,0,10,43],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#aee14d172c38cccaebd412e89b9ddb6fd":[11,0,0,10,0],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#af317ba3fe69d41d114b2a2320d03dc8f":[11,0,0,10,55],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#af317ba3fe69d41d114b2a2320d03dc8f":[11,0,0,10,56],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#af382335314631deb5c352ac86cb25b67":[11,0,0,10,39],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#af581e06e3dae820014483271ba7eb935":[11,0,0,10,9],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html":[11,0,0,11],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a02a7afea763acd3b79a77198c26aa947":[11,0,0,11,3],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a096cb746c1e63523c55b0180884e4462":[11,0,0,11,35],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a096cb746c1e63523c55b0180884e4462":[11,0,0,11,36],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a0eec4670ea5b5a698b75f8ed05d6a0f9":[11,0,0,11,21],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a0f4f729f5e2296ac62d5bc7481f6a445":[11,0,0,11,32],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a20982b10f89ac3ec1f07acf11e5a9d5a":[11,0,0,11,33],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a24eb1bccb3246b65ba607c838fc1af0b":[11,0,0,11,29],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a0f4f729f5e2296ac62d5bc7481f6a445":[11,0,0,11,33],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a20982b10f89ac3ec1f07acf11e5a9d5a":[11,0,0,11,34],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a24eb1bccb3246b65ba607c838fc1af0b":[11,0,0,11,30],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a2543c2174565f1dfee02b6b0bac4ff7d":[11,0,0,11,15],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a29727f780e4a992da817cc00ad7bd571":[11,0,0,11,28],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a32724251c423c33cd1fb095d6f8faa40":[11,0,0,11,4],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a4367c0cab418bbe455a4b49acc274e89":[11,0,0,11,7],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a50ae30ff13deb16a82ca945f536624eb":[11,0,0,11,16],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a51ffc1d04fedd7493820f1d5371f2cca":[11,0,0,11,19],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a5843e97c0982f79bc79edba6e8eee2b6":[11,0,0,11,36],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a5843e97c0982f79bc79edba6e8eee2b6":[11,0,0,11,37],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a65c07706275a3f7c5518afbfd30ce394":[11,0,0,11,18],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a66a5f8fb052b7d2b5a786f6fc666d2e6":[11,0,0,11,11],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a67dfd1cb54a3a739aeac8571f8a5d1b5":[11,0,0,11,24],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a68051e56ba7cbc7951bdc49d02bb62fa":[11,0,0,11,1],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a6aae812b1929c086b593c0b3bad9d333":[11,0,0,11,31],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a6aae812b1929c086b593c0b3bad9d333":[11,0,0,11,32],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a6cdc33399794644363a720d6f271dd8d":[11,0,0,11,22],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a84d35046d2328c1b52052b60abdfff5f":[11,0,0,11,5],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a858f380c29315521e43dd6025785e7a4":[11,0,0,11,38],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a858f380c29315521e43dd6025785e7a4":[11,0,0,11,39],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a90ecb32d9f0c497568d4de9b9affcb04":[11,0,0,11,23],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a940c313d530e0254342235d441e334b0":[11,0,0,11,6],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a956a0b0a4f8f910c45be61370ae96586":[11,0,0,11,30],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a9d15caa939a40325a3dabbe3224ddbbf":[11,0,0,11,39],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a9e474f04cbd9cf41a1e698ba6bfbf701":[11,0,0,11,44],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#aa2873ff8fc330dd1138bba61e7487287":[11,0,0,11,41],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a956a0b0a4f8f910c45be61370ae96586":[11,0,0,11,31],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a9d15caa939a40325a3dabbe3224ddbbf":[11,0,0,11,40],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a9e474f04cbd9cf41a1e698ba6bfbf701":[11,0,0,11,45],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#aa2873ff8fc330dd1138bba61e7487287":[11,0,0,11,42],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#aa53af9357f3c3aa144ccda80ed709d4c":[11,0,0,11,0],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#aa6ef30cb4fec233a33a0e0a8caf90e0b":[11,0,0,11,14],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#aa924317778c6f7d8e3941c7aadf1854d":[11,0,0,11,12],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ab10a7c98d14d3a40aef1a8b1e9cd29d2":[11,0,0,11,40],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ab10a7c98d14d3a40aef1a8b1e9cd29d2":[11,0,0,11,41],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ab68d719e9d7079f61481d13d37fc615a":[11,0,0,11,9],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ac1bcd8afb10742d6f18b8f2f07ba0392":[11,0,0,11,43],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ac1bcd8afb10742d6f18b8f2f07ba0392":[11,0,0,11,44],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ac2d22c558afdcbac2d66e2d333526202":[11,0,0,11,27],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#aca433867baaffeff86367c88bf192572":[11,0,0,11,20],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#acc2ab79d219fc8cd814c8cf656ca00c0":[11,0,0,11,37],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#acc2ab79d219fc8cd814c8cf656ca00c0":[11,0,0,11,38],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ace03cdf56314cb0b5cbe2a7d45e0cf2f":[11,0,0,11,13],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ace8e77df3989649fdeb84110a37521db":[11,0,0,11,26],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ad30a48ed641b349206b8fdb6b400ac36":[11,0,0,11,10],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ad65311d0d524203aeb76a4ecb25e8a71":[11,0,0,11,25],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ad8d508768cb4c8bdf6c169395e888c34":[11,0,0,11,45],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ad99c6aa33f3728d6a3163b56db1ea969":[11,0,0,11,42],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ae13d3f823d9ac6a763cc3c5beae1c4e3":[11,0,0,11,34],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ad8d508768cb4c8bdf6c169395e888c34":[11,0,0,11,46],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ad99c6aa33f3728d6a3163b56db1ea969":[11,0,0,11,43],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ae13d3f823d9ac6a763cc3c5beae1c4e3":[11,0,0,11,35],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ae1557f700923c9f18b75f2d320e434c7":[11,0,0,11,2],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ae24e30225c73597e585032bae8a8b0df":[11,0,0,11,24],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ae34bac01f275a64170b1e9773a8723d0":[11,0,0,11,17],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#af76e3ed42262a4fa24d0452c81e6fcc7":[11,0,0,11,8],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#af95dc38aa04430734b691ff4ba1326f7":[11,0,0,11,28],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#af95dc38aa04430734b691ff4ba1326f7":[11,0,0,11,29],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_01_4.html":[11,0,0,12],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_01_4.html#af4e7bdd41efefaaa285662fd9393c8dc":[11,0,0,12,0],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html":[11,0,0,13],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html#a6695a8029809bfab31032f0be7844ac7":[11,0,0,13,0],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html#a9f89064d5c15ade4c610381264844ae1":[11,0,0,13,3],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html#aa22a43982b32aec089b0f53164597aa4":[11,0,0,13,2],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html#aac77e0603e92469678c4df491bbfdfb0":[11,0,0,13,1],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html#ad3ba1ce637014dcdf5e983cd0f5191b5":[11,0,0,13,2],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1json__iterator_01_4.html":[11,0,0,14],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1json__iterator_01_4.html#a4dcd331b3571160d5bcca3a61ef6437b":[11,0,0,14,0],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1json__type_01_4.html":[11,0,0,15],
@@ -242,12 +249,5 @@ var NAVTREEINDEX4 =
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object_01_4.html#afd9f79244804cad8a3c12053c2e5da6f":[11,0,0,16,5],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator_01_4.html":[11,0,0,17],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator_01_4.html#a7ca63da97cf96188a9041d6f27d9fe51":[11,0,0,17,1],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator_01_4.html#a8362f620df4f825553c777ded202b97d":[11,0,0,17,0],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator_01_4.html#aaa161d4006fe118c8a2125f861ac0f51":[11,0,0,17,2],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator_01_4.html#acc81dc7722804c9fb5ec8d7020700d61":[11,0,0,17,3],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator_01_4.html#ada1a67291efb7a0ef2ea45d86d17ec60":[11,0,0,17,4],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser_01_4.html":[11,0,0,18],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser_01_4.html#ae42db86bd32544ab81e4996ae96da060":[11,0,0,18,0],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html":[11,0,0,19],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html#a8f2b2692aa9a494d63d17acc818023d5":[11,0,0,19,0]
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator_01_4.html#a8362f620df4f825553c777ded202b97d":[11,0,0,17,0]
};
diff --git a/navtreeindex5.js b/navtreeindex5.js
index 539fe2c69..543a7047a 100644
--- a/navtreeindex5.js
+++ b/navtreeindex5.js
@@ -1,55 +1,64 @@
var NAVTREEINDEX5 =
{
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html#ab025cd6b344dc3dd6673b42663976de3":[11,0,0,19,2],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator_01_4.html#aaa161d4006fe118c8a2125f861ac0f51":[11,0,0,17,2],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator_01_4.html#acc81dc7722804c9fb5ec8d7020700d61":[11,0,0,17,3],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator_01_4.html#ada1a67291efb7a0ef2ea45d86d17ec60":[11,0,0,17,4],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser_01_4.html":[11,0,0,18],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser_01_4.html#ae42db86bd32544ab81e4996ae96da060":[11,0,0,18,0],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html":[11,0,0,19],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html#a0ae75b318136f0dfa4acb2e0cc4fd94b":[11,0,0,19,2],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html#a8f2b2692aa9a494d63d17acc818023d5":[11,0,0,19,0],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html#ae38fe1a0dff73175c6edc85c36d481a8":[11,0,0,19,3],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html#af320d3d4d980f92005c56a48be336339":[11,0,0,19,1],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1token__iterator_01_4.html":[11,0,0,20],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1token__iterator_01_4.html#a4d5c1002a553306a95c86d28e9f511fa":[11,0,0,20,0],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html":[11,0,0,21],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a002c69d18a432b46e99c2579192f00a8":[11,0,0,21,30],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a04ed905c5d3108cdbb3e9801d1e30486":[11,0,0,21,4],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a059e76f9a15e0b3360b575530c20781b":[11,0,0,21,17],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a06233595fa9a434aff2fb3a3bdc76a11":[11,0,0,21,38],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a07c7e0c3076b3882e4b146a008955772":[11,0,0,21,31],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a0f74a50a24a204f69f00ffb7915f576f":[11,0,0,21,33],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a06233595fa9a434aff2fb3a3bdc76a11":[11,0,0,21,39],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a07c7e0c3076b3882e4b146a008955772":[11,0,0,21,32],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a0f74a50a24a204f69f00ffb7915f576f":[11,0,0,21,34],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a2133bb3e3ca52ee35803cdcbae374d88":[11,0,0,21,1],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a284506fefda0c9a4d7cc0907ff5d542c":[11,0,0,21,18],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a2a0f2a56381fce725bbf19f292d36e5b":[11,0,0,21,37],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a2a0f2a56381fce725bbf19f292d36e5b":[11,0,0,21,38],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a2ff162e268f5b778aec7547a653a76f9":[11,0,0,21,5],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a3a5998868865b8d9767c462281631d5e":[11,0,0,21,39],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a3a5998868865b8d9767c462281631d5e":[11,0,0,21,40],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a3bfd36dafc82c212f165b434ab5378b3":[11,0,0,21,6],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a3d5eaab352993f6e864956e5c2b82fe3":[11,0,0,21,22],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a423064962ffe48495948c98afb0e556c":[11,0,0,21,12],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a44054cd968715e09f5db03b3b1cec59b":[11,0,0,21,11],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a442b2e5803e69d4845b5b7f7bd51a0ed":[11,0,0,21,44],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a442b2e5803e69d4845b5b7f7bd51a0ed":[11,0,0,21,45],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a4db54bcbf1e10848c60c395a1cb5ab9b":[11,0,0,21,23],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a4fcb1a87bdcdd717b09af375280dcd34":[11,0,0,21,3],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a4ff908713e1eb6d6294706a235be8101":[11,0,0,21,10],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a55e9130ee895592cdcf7a2fe6767d95c":[11,0,0,21,32],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a55e9130ee895592cdcf7a2fe6767d95c":[11,0,0,21,33],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a578f245708437fd332e5bc24a7e12ca8":[11,0,0,21,28],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a5d54ff87e39ccbf114061605f6d81c28":[11,0,0,21,15],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a6424c3b72245f414d3e5a979c5433cf3":[11,0,0,21,34],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a66eb505dd50314b206960b9ab4ea0a65":[11,0,0,21,36],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a6424c3b72245f414d3e5a979c5433cf3":[11,0,0,21,35],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a66eb505dd50314b206960b9ab4ea0a65":[11,0,0,21,37],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a6775bf7c2da1da154677ec3b54272ccc":[11,0,0,21,9],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a6d591c53c2d0e8a4ad71e171dafa45f8":[11,0,0,21,2],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a75f550801092d5c38f48308b03b7f3ba":[11,0,0,21,27],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a77651d0e781ff7c537990e564cd617ab":[11,0,0,21,8],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a78b9e4e22a89050c9f911f1878165e88":[11,0,0,21,7],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a841370a15d55a3d69894d03dc192c85d":[11,0,0,21,19],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a862809692781f445bd41c93c9ba884aa":[11,0,0,21,0],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a899707b51050635713fd4aa697a5067b":[11,0,0,21,43],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a917d384192b2376c35edb592ad7971c7":[11,0,0,21,27],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a899707b51050635713fd4aa697a5067b":[11,0,0,21,44],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a91b6b30ac6e4f38ecae22280ec85f9ec":[11,0,0,21,29],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a96adec398f13538b121979da4e0fcca9":[11,0,0,21,14],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a99d406c62d87e406e93ffe95515739ae":[11,0,0,21,13],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#aa65f795ad9790a988a45cdb14323d3cc":[11,0,0,21,20],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#aadd184bbf226ca3cedbeaec4bc96cb81":[11,0,0,21,40],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#aadd184bbf226ca3cedbeaec4bc96cb81":[11,0,0,21,41],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#aba88c6ad5572d416b7f24f8a74782d99":[11,0,0,21,24],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#abc2e6abf0904478370170018bb0f1bdd":[11,0,0,21,35],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#ad176b26e845d13c778eb9b8cb94260ba":[11,0,0,21,42],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#abc2e6abf0904478370170018bb0f1bdd":[11,0,0,21,36],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#ad176b26e845d13c778eb9b8cb94260ba":[11,0,0,21,43],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#ad496791bbbd9af86d1998d474e2d9298":[11,0,0,21,26],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#adb031e554665e5dd97ae88a58fb4cd99":[11,0,0,21,41],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#adb031e554665e5dd97ae88a58fb4cd99":[11,0,0,21,42],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#ae13b5a733402eecd82098eea79d4ec6b":[11,0,0,21,16],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#aebb4d644ca41465a53c315bb8ef232f5":[11,0,0,21,21],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#aeffc73bee92f56bd2d7a00b2b7bb20cd":[11,0,0,21,30],
-"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#af3d0d03752d5e96d7ee5b83f29136b1b":[11,0,0,21,45],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#aeffc73bee92f56bd2d7a00b2b7bb20cd":[11,0,0,21,31],
+"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#af3d0d03752d5e96d7ee5b83f29136b1b":[11,0,0,21,46],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#af7ff134d2ada5aae0a95f12bbfd7f088":[11,0,0,21,25],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value__iterator_01_4.html":[11,0,0,22],
"structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value__iterator_01_4.html#a0fcb12cc4db7c75e02207eccb576aa6a":[11,0,0,22,0],
diff --git a/raw__json__string-inl_8h_source.html b/raw__json__string-inl_8h_source.html
index 795c0a9d2..3b94563fe 100644
--- a/raw__json__string-inl_8h_source.html
+++ b/raw__json__string-inl_8h_source.html
@@ -236,46 +236,52 @@ $(document).ready(function(){initNavTree('raw__json__string-inl_8h_source.html',
- 146 simdjson_inline simdjson_warn_unused simdjson_result<std::string_view> raw_json_string::unescape(json_iterator &iter)
const noexcept {
- 147 return iter.unescape(*
this);
+ 146 simdjson_inline simdjson_warn_unused simdjson_result<std::string_view> raw_json_string::unescape(json_iterator &iter,
bool allow_replacement)
const noexcept {
+ 147 return iter.unescape(*
this, allow_replacement);
-
- 151 simdjson_unused simdjson_inline std::ostream &
operator<<(std::ostream &out,
const raw_json_string &str) noexcept {
- 152 bool in_escape =
false;
- 153 const char *s = str.raw();
-
-
- 156 case '\\': in_escape = !in_escape;
break;
- 157 case '"':
if (in_escape) { in_escape =
false; }
else {
return out; }
break;
- 158 default:
if (in_escape) { in_escape =
false; }
-
-
-
-
-
-
-
-
-
-
-
-
- 171 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string>::simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string &&value) noexcept
- 172 : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string>(std::forward<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string>(value)) {}
- 173 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string>::simdjson_result(
error_code error) noexcept
- 174 : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string>(error) {}
-
- 176 simdjson_inline simdjson_result<const char *> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string>::raw() const noexcept {
-
-
-
- 180 simdjson_inline simdjson_warn_unused simdjson_result<std::string_view> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string>::unescape(SIMDJSON_IMPLEMENTATION::ondemand::json_iterator &iter)
const noexcept {
- 181 if (error()) {
return error(); }
- 182 return first.unescape(iter);
-
-
-
+ 150 simdjson_inline simdjson_warn_unused simdjson_result<std::string_view> raw_json_string::unescape_wobbly(json_iterator &iter)
const noexcept {
+ 151 return iter.unescape_wobbly(*
this);
+
+
+ 154 simdjson_unused simdjson_inline std::ostream &
operator<<(std::ostream &out,
const raw_json_string &str) noexcept {
+ 155 bool in_escape =
false;
+ 156 const char *s = str.raw();
+
+
+ 159 case '\\': in_escape = !in_escape;
break;
+ 160 case '"':
if (in_escape) { in_escape =
false; }
else {
return out; }
break;
+ 161 default:
if (in_escape) { in_escape =
false; }
+
+
+
+
+
+
+
+
+
+
+
+
+ 174 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string>::simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string &&value) noexcept
+ 175 : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string>(std::forward<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string>(value)) {}
+ 176 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string>::simdjson_result(
error_code error) noexcept
+ 177 : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string>(error) {}
+
+ 179 simdjson_inline simdjson_result<const char *> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string>::raw() const noexcept {
+
+
+
+ 183 simdjson_inline simdjson_warn_unused simdjson_result<std::string_view> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string>::unescape(SIMDJSON_IMPLEMENTATION::ondemand::json_iterator &iter,
bool allow_replacement)
const noexcept {
+ 184 if (error()) {
return error(); }
+ 185 return first.unescape(iter, allow_replacement);
+
+ 187 simdjson_inline simdjson_warn_unused simdjson_result<std::string_view> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string>::unescape_wobbly(SIMDJSON_IMPLEMENTATION::ondemand::json_iterator &iter)
const noexcept {
+ 188 if (error()) {
return error(); }
+ 189 return first.unescape_wobbly(iter);
+
+
A string escaped per JSON rules, terminated with quote (").
simdjson_inline bool is_equal(std::string_view target) const noexcept
This compares the current instance to the std::string_view target: returns true if they are byte-by-b...
static simdjson_inline bool is_free_from_unescaped_quote(std::string_view target) noexcept
Returns true if target is free from unescaped quote.
diff --git a/raw__json__string_8h_source.html b/raw__json__string_8h_source.html
index 9cbc5ee08..5fc1fcc18 100644
--- a/raw__json__string_8h_source.html
+++ b/raw__json__string_8h_source.html
@@ -128,42 +128,44 @@ $(document).ready(function(){initNavTree('raw__json__string_8h_source.html','');
138 simdjson_inline simdjson_warn_unused
bool alive() const noexcept {
return buf !=
nullptr; }
-
-
- 151 const uint8_t * buf{};
-
-
-
-
-
-
- 158 simdjson_unused simdjson_inline std::ostream &
operator<<(std::ostream &,
const raw_json_string &) noexcept;
-
- 164 simdjson_unused simdjson_inline
bool operator==(
const raw_json_string &a, std::string_view c) noexcept;
- 165 simdjson_unused simdjson_inline
bool operator==(std::string_view c,
const raw_json_string &a) noexcept;
- 166 simdjson_unused simdjson_inline
bool operator!=(
const raw_json_string &a, std::string_view c) noexcept;
- 167 simdjson_unused simdjson_inline
bool operator!=(std::string_view c,
const raw_json_string &a) noexcept;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+ 164 const uint8_t * buf{};
+
+
+
+
+
+
+ 171 simdjson_unused simdjson_inline std::ostream &
operator<<(std::ostream &,
const raw_json_string &) noexcept;
+
+ 177 simdjson_unused simdjson_inline
bool operator==(
const raw_json_string &a, std::string_view c) noexcept;
+ 178 simdjson_unused simdjson_inline
bool operator==(std::string_view c,
const raw_json_string &a) noexcept;
+ 179 simdjson_unused simdjson_inline
bool operator!=(
const raw_json_string &a, std::string_view c) noexcept;
+ 180 simdjson_unused simdjson_inline
bool operator!=(std::string_view c,
const raw_json_string &a) noexcept;
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 198 simdjson_inline simdjson_warn_unused
simdjson_result<std::string_view> unescape(SIMDJSON_IMPLEMENTATION::ondemand::json_iterator &iter,
bool allow_replacement)
const noexcept;
+
+
+
+
A string escaped per JSON rules, terminated with quote (").
simdjson_inline bool is_equal(std::string_view target) const noexcept
This compares the current instance to the std::string_view target: returns true if they are byte-by-b...
static simdjson_inline bool is_free_from_unescaped_quote(std::string_view target) noexcept
Returns true if target is free from unescaped quote.
diff --git a/search/all_10.js b/search/all_10.js
index e1d392d6c..c18a15562 100644
--- a/search/all_10.js
+++ b/search/all_10.js
@@ -1,11 +1,11 @@
var searchData=
[
- ['raw_183',['raw',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a8736f5e397a3e0a55090aadee0596214',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string']]],
- ['raw_5fjson_184',['raw_json',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#ad8a7f0b418fae60160e403f71a5a8088',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::raw_json()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aa3a27654a19c386ad0c775cff258cf0c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::raw_json()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#a71600033791f9c6bbc9f40fb2f82fdc8',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::raw_json()']]],
- ['raw_5fjson_5fstring_185',['raw_json_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a78b420ddb8a0570ee973cdfbccd31c9a',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::raw_json_string() noexcept=default'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#acf64001cc9961cd01712211b778e760b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::raw_json_string(const uint8_t *_buf) noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string']]],
- ['raw_5fjson_5ftoken_186',['raw_json_token',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a0bcbee63db869ac122bed75000b54d46',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >::raw_json_token()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a442b2e5803e69d4845b5b7f7bd51a0ed',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >::raw_json_token()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a37427e768435aafef5af097b8cc3cfec',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::raw_json_token()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ac1bcd8afb10742d6f18b8f2f07ba0392',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >::raw_json_token()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a58802e77b6fb25a3d2ec8a4d2482f9bf',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::raw_json_token()']]],
- ['reset_187',['reset',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#ae7248918b09cb4cb1d866605c641679d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::reset()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ae0bc6b9803e0c989e9defaf3edcaaae4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::reset()']]],
- ['resume_188',['resume',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a970f5c3f3e668a399765d52c7426764d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value']]],
- ['rewind_189',['rewind',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a9cc053001e8246e6e65bbcbf3db035c4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
- ['root_190',['root',['../classsimdjson_1_1dom_1_1document.html#ae19dced0eee5f63b9d1591ef51dcda4e',1,'simdjson::dom::document']]]
+ ['raw_184',['raw',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a8736f5e397a3e0a55090aadee0596214',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string']]],
+ ['raw_5fjson_185',['raw_json',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#ad8a7f0b418fae60160e403f71a5a8088',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::raw_json()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aa3a27654a19c386ad0c775cff258cf0c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::raw_json()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#a71600033791f9c6bbc9f40fb2f82fdc8',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::raw_json()']]],
+ ['raw_5fjson_5fstring_186',['raw_json_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a78b420ddb8a0570ee973cdfbccd31c9a',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::raw_json_string() noexcept=default'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#acf64001cc9961cd01712211b778e760b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::raw_json_string(const uint8_t *_buf) noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string']]],
+ ['raw_5fjson_5ftoken_187',['raw_json_token',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a0bcbee63db869ac122bed75000b54d46',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >::raw_json_token()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a442b2e5803e69d4845b5b7f7bd51a0ed',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >::raw_json_token()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a37427e768435aafef5af097b8cc3cfec',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::raw_json_token()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ac1bcd8afb10742d6f18b8f2f07ba0392',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >::raw_json_token()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a58802e77b6fb25a3d2ec8a4d2482f9bf',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::raw_json_token()']]],
+ ['reset_188',['reset',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#ae7248918b09cb4cb1d866605c641679d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::reset()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ae0bc6b9803e0c989e9defaf3edcaaae4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::reset()']]],
+ ['resume_189',['resume',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a970f5c3f3e668a399765d52c7426764d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value']]],
+ ['rewind_190',['rewind',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a9cc053001e8246e6e65bbcbf3db035c4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
+ ['root_191',['root',['../classsimdjson_1_1dom_1_1document.html#ae19dced0eee5f63b9d1591ef51dcda4e',1,'simdjson::dom::document']]]
];
diff --git a/search/all_11.js b/search/all_11.js
index 6b7262aea..ce753e343 100644
--- a/search/all_11.js
+++ b/search/all_11.js
@@ -1,58 +1,58 @@
var searchData=
[
- ['ondemand_191',['ondemand',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['scalar_20values_192',['Scalar values',['../group__scalar.html',1,'']]],
- ['scalar_5fdocument_5fas_5fvalue_193',['SCALAR_DOCUMENT_AS_VALUE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a00d7c038f551d9527ba8897f3cee907d',1,'simdjson']]],
- ['second_194',['second',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a25289df3eaabd14f029e9872a6db3dfb',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base']]],
- ['set_5fmax_5fcapacity_195',['set_max_capacity',['../classsimdjson_1_1dom_1_1parser.html#a6977b4586bc601070cf100e2973a4cbc',1,'simdjson::dom::parser']]],
- ['signed_5finteger_196',['signed_integer',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a5a5f83e81a35457b070256b78e16bf3faa14b6141855cd58c670ca6559c75c941',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
- ['simdjson_197',['simdjson',['../namespacesimdjson.html',1,'']]],
- ['simdjson_2eh_198',['simdjson.h',['../simdjson_8h.html',1,'']]],
- ['simdjson_5ferror_199',['simdjson_error',['../structsimdjson_1_1simdjson__error.html',1,'simdjson::simdjson_error'],['../structsimdjson_1_1simdjson__error.html#af5355b65f85b897251b3665086075f39',1,'simdjson::simdjson_error::simdjson_error()']]],
- ['simdjson_5fmaxsize_5fbytes_200',['SIMDJSON_MAXSIZE_BYTES',['../namespacesimdjson.html#ac66973a7111dc4aa96ba7b3434344347',1,'simdjson']]],
- ['simdjson_5fpadding_201',['SIMDJSON_PADDING',['../namespacesimdjson.html#aecdd750132f0eb123a6d61113b4197bf',1,'simdjson']]],
- ['simdjson_5fresult_202',['simdjson_result',['../structsimdjson_1_1simdjson__result.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20dom_3a_3aarray_20_3e_203',['simdjson_result< dom::array >',['../structsimdjson_1_1simdjson__result_3_01dom_1_1array_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20dom_3a_3adocument_5fstream_20_3e_204',['simdjson_result< dom::document_stream >',['../structsimdjson_1_1simdjson__result_3_01dom_1_1document__stream_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20dom_3a_3aelement_20_3e_205',['simdjson_result< dom::element >',['../structsimdjson_1_1simdjson__result_3_01dom_1_1element_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20dom_3a_3aobject_20_3e_206',['simdjson_result< dom::object >',['../structsimdjson_1_1simdjson__result_3_01dom_1_1object_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aarray_20_3e_207',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::array >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aarray_5fiterator_20_3e_208',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::array_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_20_3e_209',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_5freference_20_3e_210',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_5fstream_20_3e_211',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_stream >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3afield_20_3e_212',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::field >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3ajson_5fiterator_20_3e_213',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::json_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1json__iterator_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3ajson_5ftype_20_3e_214',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::json_type >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1json__type_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aobject_20_3e_215',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::object >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aobject_5fiterator_20_3e_216',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::object_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aparser_20_3e_217',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::parser >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3araw_5fjson_5fstring_20_3e_218',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3atoken_5fiterator_20_3e_219',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::token_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1token__iterator_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3avalue_20_3e_220',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3avalue_5fiterator_20_3e_221',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value__iterator_01_4.html',1,'simdjson']]],
- ['simdjson_5fversion_5fmajor_222',['SIMDJSON_VERSION_MAJOR',['../namespacesimdjson.html#a44beb117a12abd0d8d18589dbc3dbe97ae36fce138c6f2f7a25e9ee06e7ed37ae',1,'simdjson']]],
- ['simdjson_5fversion_5fminor_223',['SIMDJSON_VERSION_MINOR',['../namespacesimdjson.html#a44beb117a12abd0d8d18589dbc3dbe97ab442d4c66052c2f30b72a0d6f8dc8814',1,'simdjson']]],
- ['simdjson_5fversion_5frevision_224',['SIMDJSON_VERSION_REVISION',['../namespacesimdjson.html#a44beb117a12abd0d8d18589dbc3dbe97a5537fa0bdb6b7345ea789c51f74b10ee',1,'simdjson']]],
- ['size_225',['size',['../classsimdjson_1_1dom_1_1array.html#a698f2f984d1a78a68962c06b2f047686',1,'simdjson::dom::array::size()'],['../classsimdjson_1_1dom_1_1object.html#a93ec5c36aae913f266f533b2e02bc873',1,'simdjson::dom::object::size()'],['../structsimdjson_1_1padded__string.html#a07d50795f042119ab848c37cb8911db4',1,'simdjson::padded_string::size()']]],
- ['size_5fin_5fbytes_226',['size_in_bytes',['../classsimdjson_1_1dom_1_1document__stream.html#a2a08525ae815167b73b6393a8999e46b',1,'simdjson::dom::document_stream::size_in_bytes()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#a43723c86c43ee3533a3278b5cd2fe2d0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::size_in_bytes()']]],
- ['skip_227',['skip',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ae75aa0d09a10682fd30dc4e8e25d0a73',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value']]],
- ['skip_5fdouble_228',['skip_double',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#ac6b75b1d1af73c9ef8958e573c367e1c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]],
- ['stage1_5fmode_229',['stage1_mode',['../namespacesimdjson.html#ae6ec9f0ce23fc51d87116b64fdbeb811',1,'simdjson']]],
- ['start_230',['start',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a0126e4a8e02fa0a02481d3bdfd3965f7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::start()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a760c4d01ad03f18e09a93387de5de60e',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::start()']]],
- ['start_5farray_231',['start_array',['../group__array.html#ga14e69f9c4949805695e30a576bd9c964',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['start_5fobject_232',['start_object',['../group__object.html#ga46e677764da46ebbe4b0e4dea6672a5f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['start_5for_5fresume_5fobject_233',['start_or_resume_object',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a821e11bc3b6b3f16fa7d6b15c77c17d3',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value']]],
- ['start_5froot_234',['start_root',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#aac11a5e300a49531b3600a019cd89304',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array']]],
- ['start_5froot_5farray_235',['start_root_array',['../group__array.html#ga334481c295286d926bb3bb912232e225',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['start_5froot_5fobject_236',['start_root_object',['../group__object.html#gab9563a58e164e9f5f75805cffb3582ec',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['started_237',['started',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#aca1c364caedac11edc78c64734013ce0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array']]],
- ['started_5farray_238',['started_array',['../group__array.html#ga136e508ce46622b86cc901490c807578',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['started_5fobject_239',['started_object',['../group__object.html#ga192424d19b12648eea73e3d073d5fcac',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['started_5froot_5farray_240',['started_root_array',['../group__array.html#gaa3428f6c87e63d8a2ba93a3816721066',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['started_5froot_5fobject_241',['started_root_object',['../group__object.html#gaa0c31077aeadb6fc627d4c5750e58ecb',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['string_242',['string',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330ab45cffe084dd3d20d928bee85e7b0f21',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
- ['string_5ferror_243',['STRING_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a8ef9cfdd78dd92d2b304249917638d12',1,'simdjson']]],
- ['success_244',['SUCCESS',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aa4ffc800804829a88c5b52ac3c4c6681',1,'simdjson']]],
- ['supported_5fby_5fruntime_5fsystem_245',['supported_by_runtime_system',['../classsimdjson_1_1implementation.html#adf77c9bc0869eff8fd46e942c4532135',1,'simdjson::implementation']]]
+ ['ondemand_192',['ondemand',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['scalar_20values_193',['Scalar values',['../group__scalar.html',1,'']]],
+ ['scalar_5fdocument_5fas_5fvalue_194',['SCALAR_DOCUMENT_AS_VALUE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a00d7c038f551d9527ba8897f3cee907d',1,'simdjson']]],
+ ['second_195',['second',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a25289df3eaabd14f029e9872a6db3dfb',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base']]],
+ ['set_5fmax_5fcapacity_196',['set_max_capacity',['../classsimdjson_1_1dom_1_1parser.html#a6977b4586bc601070cf100e2973a4cbc',1,'simdjson::dom::parser']]],
+ ['signed_5finteger_197',['signed_integer',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a5a5f83e81a35457b070256b78e16bf3faa14b6141855cd58c670ca6559c75c941',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
+ ['simdjson_198',['simdjson',['../namespacesimdjson.html',1,'']]],
+ ['simdjson_2eh_199',['simdjson.h',['../simdjson_8h.html',1,'']]],
+ ['simdjson_5ferror_200',['simdjson_error',['../structsimdjson_1_1simdjson__error.html',1,'simdjson::simdjson_error'],['../structsimdjson_1_1simdjson__error.html#af5355b65f85b897251b3665086075f39',1,'simdjson::simdjson_error::simdjson_error()']]],
+ ['simdjson_5fmaxsize_5fbytes_201',['SIMDJSON_MAXSIZE_BYTES',['../namespacesimdjson.html#ac66973a7111dc4aa96ba7b3434344347',1,'simdjson']]],
+ ['simdjson_5fpadding_202',['SIMDJSON_PADDING',['../namespacesimdjson.html#aecdd750132f0eb123a6d61113b4197bf',1,'simdjson']]],
+ ['simdjson_5fresult_203',['simdjson_result',['../structsimdjson_1_1simdjson__result.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20dom_3a_3aarray_20_3e_204',['simdjson_result< dom::array >',['../structsimdjson_1_1simdjson__result_3_01dom_1_1array_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20dom_3a_3adocument_5fstream_20_3e_205',['simdjson_result< dom::document_stream >',['../structsimdjson_1_1simdjson__result_3_01dom_1_1document__stream_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20dom_3a_3aelement_20_3e_206',['simdjson_result< dom::element >',['../structsimdjson_1_1simdjson__result_3_01dom_1_1element_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20dom_3a_3aobject_20_3e_207',['simdjson_result< dom::object >',['../structsimdjson_1_1simdjson__result_3_01dom_1_1object_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aarray_20_3e_208',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::array >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aarray_5fiterator_20_3e_209',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::array_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_20_3e_210',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_5freference_20_3e_211',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_5fstream_20_3e_212',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_stream >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3afield_20_3e_213',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::field >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3ajson_5fiterator_20_3e_214',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::json_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1json__iterator_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3ajson_5ftype_20_3e_215',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::json_type >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1json__type_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aobject_20_3e_216',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::object >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aobject_5fiterator_20_3e_217',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::object_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aparser_20_3e_218',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::parser >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3araw_5fjson_5fstring_20_3e_219',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3atoken_5fiterator_20_3e_220',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::token_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1token__iterator_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3avalue_20_3e_221',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3avalue_5fiterator_20_3e_222',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value__iterator_01_4.html',1,'simdjson']]],
+ ['simdjson_5fversion_5fmajor_223',['SIMDJSON_VERSION_MAJOR',['../namespacesimdjson.html#a44beb117a12abd0d8d18589dbc3dbe97ae36fce138c6f2f7a25e9ee06e7ed37ae',1,'simdjson']]],
+ ['simdjson_5fversion_5fminor_224',['SIMDJSON_VERSION_MINOR',['../namespacesimdjson.html#a44beb117a12abd0d8d18589dbc3dbe97ab442d4c66052c2f30b72a0d6f8dc8814',1,'simdjson']]],
+ ['simdjson_5fversion_5frevision_225',['SIMDJSON_VERSION_REVISION',['../namespacesimdjson.html#a44beb117a12abd0d8d18589dbc3dbe97a5537fa0bdb6b7345ea789c51f74b10ee',1,'simdjson']]],
+ ['size_226',['size',['../classsimdjson_1_1dom_1_1array.html#a698f2f984d1a78a68962c06b2f047686',1,'simdjson::dom::array::size()'],['../classsimdjson_1_1dom_1_1object.html#a93ec5c36aae913f266f533b2e02bc873',1,'simdjson::dom::object::size()'],['../structsimdjson_1_1padded__string.html#a07d50795f042119ab848c37cb8911db4',1,'simdjson::padded_string::size()']]],
+ ['size_5fin_5fbytes_227',['size_in_bytes',['../classsimdjson_1_1dom_1_1document__stream.html#a2a08525ae815167b73b6393a8999e46b',1,'simdjson::dom::document_stream::size_in_bytes()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#a43723c86c43ee3533a3278b5cd2fe2d0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::size_in_bytes()']]],
+ ['skip_228',['skip',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ae75aa0d09a10682fd30dc4e8e25d0a73',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value']]],
+ ['skip_5fdouble_229',['skip_double',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#ac6b75b1d1af73c9ef8958e573c367e1c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]],
+ ['stage1_5fmode_230',['stage1_mode',['../namespacesimdjson.html#ae6ec9f0ce23fc51d87116b64fdbeb811',1,'simdjson']]],
+ ['start_231',['start',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a0126e4a8e02fa0a02481d3bdfd3965f7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::start()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a760c4d01ad03f18e09a93387de5de60e',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::start()']]],
+ ['start_5farray_232',['start_array',['../group__array.html#ga14e69f9c4949805695e30a576bd9c964',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['start_5fobject_233',['start_object',['../group__object.html#ga46e677764da46ebbe4b0e4dea6672a5f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['start_5for_5fresume_5fobject_234',['start_or_resume_object',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a821e11bc3b6b3f16fa7d6b15c77c17d3',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value']]],
+ ['start_5froot_235',['start_root',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#aac11a5e300a49531b3600a019cd89304',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array']]],
+ ['start_5froot_5farray_236',['start_root_array',['../group__array.html#ga334481c295286d926bb3bb912232e225',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['start_5froot_5fobject_237',['start_root_object',['../group__object.html#gab9563a58e164e9f5f75805cffb3582ec',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['started_238',['started',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#aca1c364caedac11edc78c64734013ce0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array']]],
+ ['started_5farray_239',['started_array',['../group__array.html#ga136e508ce46622b86cc901490c807578',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['started_5fobject_240',['started_object',['../group__object.html#ga192424d19b12648eea73e3d073d5fcac',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['started_5froot_5farray_241',['started_root_array',['../group__array.html#gaa3428f6c87e63d8a2ba93a3816721066',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['started_5froot_5fobject_242',['started_root_object',['../group__object.html#gaa0c31077aeadb6fc627d4c5750e58ecb',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['string_243',['string',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330ab45cffe084dd3d20d928bee85e7b0f21',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
+ ['string_5ferror_244',['STRING_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a8ef9cfdd78dd92d2b304249917638d12',1,'simdjson']]],
+ ['success_245',['SUCCESS',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aa4ffc800804829a88c5b52ac3c4c6681',1,'simdjson']]],
+ ['supported_5fby_5fruntime_5fsystem_246',['supported_by_runtime_system',['../classsimdjson_1_1implementation.html#adf77c9bc0869eff8fd46e942c4532135',1,'simdjson::implementation']]]
];
diff --git a/search/all_12.js b/search/all_12.js
index fbe9c2831..8f590594b 100644
--- a/search/all_12.js
+++ b/search/all_12.js
@@ -1,16 +1,16 @@
var searchData=
[
- ['t_5fatom_5ferror_246',['T_ATOM_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ab6e8bfc242f7bea38657eaf61400077f',1,'simdjson']]],
- ['take_5fvalue_247',['take_value',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#affadf1e1f762248d60950e333b739820',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::take_value()'],['../structsimdjson_1_1simdjson__result.html#a815368a9e09fa675d0b6672595f5ad19',1,'simdjson::simdjson_result::take_value()']]],
- ['tape_20structure_20in_20simdjson_248',['Tape structure in simdjson',['../md_doc_tape.html',1,'']]],
- ['tape_5ferror_249',['TAPE_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a4005fbda56edc47e077e5cfd4e68cda9',1,'simdjson']]],
- ['the_20basics_250',['The Basics',['../md_doc_basics.html',1,'']]],
- ['the_20document_2dobject_2dmodel_20_28dom_29_20front_2dend_251',['The Document-Object-Model (DOM) front-end',['../md_doc_dom.html',1,'']]],
- ['tie_252',['tie',['../classsimdjson_1_1dom_1_1element.html#a5342161b8c52c78b2f5edac10e9d05ca',1,'simdjson::dom::element::tie()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#acd950d432e76a0bc1a7f3236cc7a1894',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::tie()'],['../structsimdjson_1_1simdjson__result.html#a86dbcba063713c0e284dbde9fae17568',1,'simdjson::simdjson_result::tie()']]],
- ['to_5fdebug_5fstring_253',['to_debug_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a9afdfb30ac2aacabce09a5c9d7fd375a',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
- ['to_5fjson_5fstring_254',['to_json_string',['../namespacesimdjson.html#a2cda17221b852e5c398bad5bf350d270',1,'simdjson::to_json_string(SIMDJSON_IMPLEMENTATION::ondemand::document &x) noexcept'],['../namespacesimdjson.html#a4c998fcc6bf2bca2196b45a5c3e1967a',1,'simdjson::to_json_string(SIMDJSON_IMPLEMENTATION::ondemand::value &x) noexcept'],['../namespacesimdjson.html#afc529e3bcacb5b3c747b525fb443771f',1,'simdjson::to_json_string(SIMDJSON_IMPLEMENTATION::ondemand::object &x) noexcept'],['../namespacesimdjson.html#a598dd79ec46726de8a6d409ba1bae034',1,'simdjson::to_json_string(SIMDJSON_IMPLEMENTATION::ondemand::array &x) noexcept']]],
- ['to_5fstring_255',['to_string',['../namespacesimdjson.html#ade4516933f53705eacfaed65ed14962d',1,'simdjson']]],
- ['trailing_5fcontent_256',['TRAILING_CONTENT',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ab70f5a6f0ac798d482e95a0fcc528676',1,'simdjson']]],
- ['truncated_5fbytes_257',['truncated_bytes',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#acd3fd372dfd30fcce1d6a103c6682d0e',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::truncated_bytes()'],['../classsimdjson_1_1dom_1_1document__stream.html#a6c2a07e08213dc9a51754940942f9e69',1,'simdjson::dom::document_stream::truncated_bytes()']]],
- ['type_258',['type',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ac39965b3006b8f19ed576ce99b7534c5',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::type()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#af3d0d03752d5e96d7ee5b83f29136b1b',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >::type()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a77bdebf4d2105efdd123cbf0a4906b1e',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::type()'],['../classsimdjson_1_1dom_1_1element.html#a19162bf6d94fb6c21bb2bf2e9b78ff0d',1,'simdjson::dom::element::type()']]]
+ ['t_5fatom_5ferror_247',['T_ATOM_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ab6e8bfc242f7bea38657eaf61400077f',1,'simdjson']]],
+ ['take_5fvalue_248',['take_value',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#affadf1e1f762248d60950e333b739820',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::take_value()'],['../structsimdjson_1_1simdjson__result.html#a815368a9e09fa675d0b6672595f5ad19',1,'simdjson::simdjson_result::take_value()']]],
+ ['tape_20structure_20in_20simdjson_249',['Tape structure in simdjson',['../md_doc_tape.html',1,'']]],
+ ['tape_5ferror_250',['TAPE_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a4005fbda56edc47e077e5cfd4e68cda9',1,'simdjson']]],
+ ['the_20basics_251',['The Basics',['../md_doc_basics.html',1,'']]],
+ ['the_20document_2dobject_2dmodel_20_28dom_29_20front_2dend_252',['The Document-Object-Model (DOM) front-end',['../md_doc_dom.html',1,'']]],
+ ['tie_253',['tie',['../classsimdjson_1_1dom_1_1element.html#a5342161b8c52c78b2f5edac10e9d05ca',1,'simdjson::dom::element::tie()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#acd950d432e76a0bc1a7f3236cc7a1894',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::tie()'],['../structsimdjson_1_1simdjson__result.html#a86dbcba063713c0e284dbde9fae17568',1,'simdjson::simdjson_result::tie()']]],
+ ['to_5fdebug_5fstring_254',['to_debug_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a9afdfb30ac2aacabce09a5c9d7fd375a',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
+ ['to_5fjson_5fstring_255',['to_json_string',['../namespacesimdjson.html#a2cda17221b852e5c398bad5bf350d270',1,'simdjson::to_json_string(SIMDJSON_IMPLEMENTATION::ondemand::document &x) noexcept'],['../namespacesimdjson.html#a4c998fcc6bf2bca2196b45a5c3e1967a',1,'simdjson::to_json_string(SIMDJSON_IMPLEMENTATION::ondemand::value &x) noexcept'],['../namespacesimdjson.html#afc529e3bcacb5b3c747b525fb443771f',1,'simdjson::to_json_string(SIMDJSON_IMPLEMENTATION::ondemand::object &x) noexcept'],['../namespacesimdjson.html#a598dd79ec46726de8a6d409ba1bae034',1,'simdjson::to_json_string(SIMDJSON_IMPLEMENTATION::ondemand::array &x) noexcept']]],
+ ['to_5fstring_256',['to_string',['../namespacesimdjson.html#ade4516933f53705eacfaed65ed14962d',1,'simdjson']]],
+ ['trailing_5fcontent_257',['TRAILING_CONTENT',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ab70f5a6f0ac798d482e95a0fcc528676',1,'simdjson']]],
+ ['truncated_5fbytes_258',['truncated_bytes',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#acd3fd372dfd30fcce1d6a103c6682d0e',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::truncated_bytes()'],['../classsimdjson_1_1dom_1_1document__stream.html#a6c2a07e08213dc9a51754940942f9e69',1,'simdjson::dom::document_stream::truncated_bytes()']]],
+ ['type_259',['type',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ac39965b3006b8f19ed576ce99b7534c5',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::type()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#af3d0d03752d5e96d7ee5b83f29136b1b',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >::type()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a77bdebf4d2105efdd123cbf0a4906b1e',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::type()'],['../classsimdjson_1_1dom_1_1element.html#a19162bf6d94fb6c21bb2bf2e9b78ff0d',1,'simdjson::dom::element::type()']]]
];
diff --git a/search/all_13.js b/search/all_13.js
index de7d11a52..b34999f36 100644
--- a/search/all_13.js
+++ b/search/all_13.js
@@ -1,13 +1,14 @@
var searchData=
[
- ['unclosed_5fstring_259',['UNCLOSED_STRING',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a0f9ce97e85e7607e0f4d3811b818a013',1,'simdjson']]],
- ['unescape_260',['unescape',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#ac69b3aef12e3490c9fbd0a580004e015',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser']]],
- ['unescaped_5fchars_261',['UNESCAPED_CHARS',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aca57917fc85c421aab3f2dd451519fa5',1,'simdjson']]],
- ['unescaped_5fkey_262',['unescaped_key',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a49425afaaf0874b07c1f8e4ed1d86cf0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::field']]],
- ['unexpected_5ferror_263',['UNEXPECTED_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9abdd3905c91a152a01637a2946066db6b',1,'simdjson']]],
- ['uninitialized_264',['UNINITIALIZED',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ac2aef8f0fc33187cc118c95fade925d2',1,'simdjson']]],
- ['unsafe_5fis_5fequal_265',['unsafe_is_equal',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#affa14023a66c65f906ee3e673443d943',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::unsafe_is_equal(size_t length, std::string_view target) const noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a11bccba8ede5e7dff56e2737fcb853c7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::unsafe_is_equal(std::string_view target) const noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a3d8f15d3b004acd695b6fff5ba94b515',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::unsafe_is_equal(const char *target) const noexcept']]],
- ['unsigned_5finteger_266',['unsigned_integer',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a5a5f83e81a35457b070256b78e16bf3fa7383104b83254a99f5991d0ac77a6666',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
- ['unsupported_5farchitecture_267',['UNSUPPORTED_ARCHITECTURE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a4d768ac107473bceb91f8a0d1a824bc2',1,'simdjson']]],
- ['utf8_5ferror_268',['UTF8_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a398a5389d6e20c39e8880b0101b66f56',1,'simdjson']]]
+ ['unclosed_5fstring_260',['UNCLOSED_STRING',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a0f9ce97e85e7607e0f4d3811b818a013',1,'simdjson']]],
+ ['unescape_261',['unescape',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a27714b0095b036a169cabebdc1031937',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser']]],
+ ['unescape_5fwobbly_262',['unescape_wobbly',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a926e145e3ffb2b1024646dd56bc938e4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser']]],
+ ['unescaped_5fchars_263',['UNESCAPED_CHARS',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aca57917fc85c421aab3f2dd451519fa5',1,'simdjson']]],
+ ['unescaped_5fkey_264',['unescaped_key',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a8e655ba1a0fd26809821f77aac355b7c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::field']]],
+ ['unexpected_5ferror_265',['UNEXPECTED_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9abdd3905c91a152a01637a2946066db6b',1,'simdjson']]],
+ ['uninitialized_266',['UNINITIALIZED',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ac2aef8f0fc33187cc118c95fade925d2',1,'simdjson']]],
+ ['unsafe_5fis_5fequal_267',['unsafe_is_equal',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#affa14023a66c65f906ee3e673443d943',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::unsafe_is_equal(size_t length, std::string_view target) const noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a11bccba8ede5e7dff56e2737fcb853c7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::unsafe_is_equal(std::string_view target) const noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a3d8f15d3b004acd695b6fff5ba94b515',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::unsafe_is_equal(const char *target) const noexcept']]],
+ ['unsigned_5finteger_268',['unsigned_integer',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a5a5f83e81a35457b070256b78e16bf3fa7383104b83254a99f5991d0ac77a6666',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
+ ['unsupported_5farchitecture_269',['UNSUPPORTED_ARCHITECTURE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a4d768ac107473bceb91f8a0d1a824bc2',1,'simdjson']]],
+ ['utf8_5ferror_270',['UTF8_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a398a5389d6e20c39e8880b0101b66f56',1,'simdjson']]]
];
diff --git a/search/all_14.js b/search/all_14.js
index d4e34477a..31f2256fe 100644
--- a/search/all_14.js
+++ b/search/all_14.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['validate_5futf8_269',['validate_utf8',['../classsimdjson_1_1implementation.html#aa3a7b818d56a54cca272191ec176f8f1',1,'simdjson::implementation::validate_utf8()'],['../namespacesimdjson.html#a04edabca6d128b8b31592e1e2e331ae0',1,'simdjson::validate_utf8(const std::string &s) noexcept'],['../namespacesimdjson.html#a28a847c4b31fc804bec2987b171dbd07',1,'simdjson::validate_utf8(const std::string_view sv) noexcept'],['../namespacesimdjson.html#a53546f3af0ed6840ffbeefcbefd305a1',1,'simdjson::validate_utf8(const char *buf, size_t len) noexcept']]],
- ['value_270',['value',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value'],['../structsimdjson_1_1simdjson__result.html#af7f6d5a5e979b60d5231449d53dcd9be',1,'simdjson::simdjson_result::value() &noexcept(false)'],['../structsimdjson_1_1simdjson__result.html#ae52c2cc66e62e47b05f29e342ad5078a',1,'simdjson::simdjson_result::value() &&noexcept(false)'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a78c5842bded486846c816eb01ff439fc',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value() &noexcept(false)'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a934c09eb8db55277d2d7190f1bbc1a84',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value() &&noexcept(false)'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#ad5f688629f86f80dff49cab2270b1967',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::field::value()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ab96f6c19a1866863a110e8bcc93e0392',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::value() noexcept=default'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a7188b9843c2b3b3050c54b52d5b6886f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::value(const value_iterator &iter) noexcept'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a2049ae539dca6999cc33300d212a5014',1,'simdjson::dom::object::iterator::value()'],['../classsimdjson_1_1dom_1_1key__value__pair.html#af7e38d9eb63a40256c9f936e45edf703',1,'simdjson::dom::key_value_pair::value()']]],
- ['value_5funsafe_271',['value_unsafe',['../structsimdjson_1_1simdjson__result.html#a3c25e74570144de48ef71ae490def85f',1,'simdjson::simdjson_result::value_unsafe() const &noexcept'],['../structsimdjson_1_1simdjson__result.html#a67ac8535dcf368fed604549a07e423e2',1,'simdjson::simdjson_result::value_unsafe() &&noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a92e1c9ffc7a854b4b33fa48fe2d95709',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value_unsafe() const &noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a5d412981bc3cee0f0bcf3bfb53ae83e1',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value_unsafe() &noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#ad06c8e25c44d091eb3757a65ccd9f57f',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value_unsafe() &&noexcept']]]
+ ['validate_5futf8_271',['validate_utf8',['../classsimdjson_1_1implementation.html#aa3a7b818d56a54cca272191ec176f8f1',1,'simdjson::implementation::validate_utf8()'],['../namespacesimdjson.html#a04edabca6d128b8b31592e1e2e331ae0',1,'simdjson::validate_utf8(const std::string &s) noexcept'],['../namespacesimdjson.html#a28a847c4b31fc804bec2987b171dbd07',1,'simdjson::validate_utf8(const std::string_view sv) noexcept'],['../namespacesimdjson.html#a53546f3af0ed6840ffbeefcbefd305a1',1,'simdjson::validate_utf8(const char *buf, size_t len) noexcept']]],
+ ['value_272',['value',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value'],['../structsimdjson_1_1simdjson__result.html#af7f6d5a5e979b60d5231449d53dcd9be',1,'simdjson::simdjson_result::value() &noexcept(false)'],['../structsimdjson_1_1simdjson__result.html#ae52c2cc66e62e47b05f29e342ad5078a',1,'simdjson::simdjson_result::value() &&noexcept(false)'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a78c5842bded486846c816eb01ff439fc',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value() &noexcept(false)'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a934c09eb8db55277d2d7190f1bbc1a84',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value() &&noexcept(false)'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#ad5f688629f86f80dff49cab2270b1967',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::field::value()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ab96f6c19a1866863a110e8bcc93e0392',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::value() noexcept=default'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a7188b9843c2b3b3050c54b52d5b6886f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::value(const value_iterator &iter) noexcept'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a2049ae539dca6999cc33300d212a5014',1,'simdjson::dom::object::iterator::value()'],['../classsimdjson_1_1dom_1_1key__value__pair.html#af7e38d9eb63a40256c9f936e45edf703',1,'simdjson::dom::key_value_pair::value()']]],
+ ['value_5funsafe_273',['value_unsafe',['../structsimdjson_1_1simdjson__result.html#a3c25e74570144de48ef71ae490def85f',1,'simdjson::simdjson_result::value_unsafe() const &noexcept'],['../structsimdjson_1_1simdjson__result.html#a67ac8535dcf368fed604549a07e423e2',1,'simdjson::simdjson_result::value_unsafe() &&noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a92e1c9ffc7a854b4b33fa48fe2d95709',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value_unsafe() const &noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a5d412981bc3cee0f0bcf3bfb53ae83e1',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value_unsafe() &noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#ad06c8e25c44d091eb3757a65ccd9f57f',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value_unsafe() &&noexcept']]]
];
diff --git a/search/all_15.js b/search/all_15.js
index 0d2ca9ab9..b0f72e102 100644
--- a/search/all_15.js
+++ b/search/all_15.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['what_272',['what',['../structsimdjson_1_1simdjson__error.html#a73b15aae33a4eef105d0735e03d83a49',1,'simdjson::simdjson_error']]]
+ ['what_274',['what',['../structsimdjson_1_1simdjson__error.html#a73b15aae33a4eef105d0735e03d83a49',1,'simdjson::simdjson_error']]]
];
diff --git a/search/all_16.js b/search/all_16.js
index ea521d928..9727a9199 100644
--- a/search/all_16.js
+++ b/search/all_16.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['_7eparser_273',['~parser',['../classsimdjson_1_1dom_1_1parser.html#aeb48211f320af02b58dc3d0505059844',1,'simdjson::dom::parser::~parser()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a4a144d96ad06a2295137dd0e5b7dcc1d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::~parser()']]]
+ ['_7eparser_275',['~parser',['../classsimdjson_1_1dom_1_1parser.html#aeb48211f320af02b58dc3d0505059844',1,'simdjson::dom::parser::~parser()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a4a144d96ad06a2295137dd0e5b7dcc1d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::~parser()']]]
];
diff --git a/search/all_6.js b/search/all_6.js
index 61c5a2433..7e8ed4f8d 100644
--- a/search/all_6.js
+++ b/search/all_6.js
@@ -12,11 +12,12 @@ var searchData=
['get_5fint64_5fin_5fstring_63',['get_int64_in_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aac4a4837e66c8f1243722ab04ce45436',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_int64_in_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a547e99f2f430ca39bf4060d090f45ff7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_int64_in_string() noexcept']]],
['get_5fnumber_64',['get_number',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aa89c4aceb7e052a1f7ff7e4058b651f1',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_number()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a2b04a9cd8c4ff9b591dc3f2db95c69cf',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_number() noexcept']]],
['get_5fnumber_5ftype_65',['get_number_type',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#abb3a7cc6f2391d26f27a28c16ca38c9c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_number_type()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#a8c8d29d831635c958e87de0cc2dab8b4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::get_number_type()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a2f46079741d1ba316de32bb9765c5082',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_number_type()']]],
- ['get_5fobject_66',['get_object',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a4620d364a637031ef38661f9fb215ebc',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_object()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a3bde0795cb309f3e51b8388fbafc1fe4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_object()'],['../classsimdjson_1_1dom_1_1element.html#ab4c2e35dc44664eb04038ad35efc64f9',1,'simdjson::dom::element::get_object()']]],
- ['get_5fraw_5fjson_5fstring_67',['get_raw_json_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#afa3370b930da937911cf61ec9b047c56',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_raw_json_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aca8b183c4e674a5b4ade8f6d2780f815',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_raw_json_string()']]],
- ['get_5fstring_68',['get_string',['../classsimdjson_1_1dom_1_1element.html#ae83652b5016ce4d4ff71f8f9bc05913e',1,'simdjson::dom::element::get_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#addfd2bc654d13906456ce44168d2ab68',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8e96b60b036694be5ef43fb564ab8d1b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_string()']]],
+ ['get_5fobject_66',['get_object',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a4620d364a637031ef38661f9fb215ebc',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_object()'],['../classsimdjson_1_1dom_1_1element.html#ab4c2e35dc44664eb04038ad35efc64f9',1,'simdjson::dom::element::get_object()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a3bde0795cb309f3e51b8388fbafc1fe4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_object() noexcept']]],
+ ['get_5fraw_5fjson_5fstring_67',['get_raw_json_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aca8b183c4e674a5b4ade8f6d2780f815',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_raw_json_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#afa3370b930da937911cf61ec9b047c56',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_raw_json_string() noexcept']]],
+ ['get_5fstring_68',['get_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a2ae4c160def21463b0ab214a36c0a78e',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a9d574e04d5dfde0bf99dea4926232fe4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_string()'],['../classsimdjson_1_1dom_1_1element.html#ae83652b5016ce4d4ff71f8f9bc05913e',1,'simdjson::dom::element::get_string() const noexcept']]],
['get_5fstring_5flength_69',['get_string_length',['../classsimdjson_1_1dom_1_1element.html#a9d92145af64401654c20d2885dd4051d',1,'simdjson::dom::element']]],
['get_5fuint64_70',['get_uint64',['../classsimdjson_1_1dom_1_1element.html#a9e5a750a066f17d5a9a31a24980e0b1d',1,'simdjson::dom::element::get_uint64()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a4d221850d045f1e7ada4dfaaee0e145c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_uint64()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a47b30548f71aca4317bdc4c6955cd719',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_reference::get_uint64()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#aff5939efdcb41c9d2b9a1997816f093f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::get_uint64()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#adaa7bb2c9b3988476f3317ddda27e22d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_uint64()']]],
['get_5fuint64_5fin_5fstring_71',['get_uint64_in_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5cb63d14a99509d751f4be45063fec95',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_uint64_in_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8bc2eb9eeeb7e2e0b82c23ed4d254933',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_uint64_in_string()']]],
- ['get_5fvalue_72',['get_value',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ab89eda435b4a68be578fcb5c3da73980',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]]
+ ['get_5fvalue_72',['get_value',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ab89eda435b4a68be578fcb5c3da73980',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
+ ['get_5fwobbly_5fstring_73',['get_wobbly_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ae1db0154ef901ed1e8fb581bb9df6899',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_wobbly_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ab7bb6749f40bec70c8a1a31edad53c1d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_wobbly_string()']]]
];
diff --git a/search/all_7.js b/search/all_7.js
index ff3a5618d..aa639bdbf 100644
--- a/search/all_7.js
+++ b/search/all_7.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['has_5fnext_5felement_73',['has_next_element',['../group__array.html#ga31b0a8ce8734db9413cce31c4d9c8c8d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['has_5fnext_5ffield_74',['has_next_field',['../group__object.html#ga7956fe38cd8ecfbc8f709aa6f65c92b4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]]
+ ['has_5fnext_5felement_74',['has_next_element',['../group__array.html#ga31b0a8ce8734db9413cce31c4d9c8c8d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['has_5fnext_5ffield_75',['has_next_field',['../group__object.html#ga7956fe38cd8ecfbc8f709aa6f65c92b4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]]
];
diff --git a/search/all_8.js b/search/all_8.js
index db4952763..11027539c 100644
--- a/search/all_8.js
+++ b/search/all_8.js
@@ -1,50 +1,50 @@
var searchData=
[
- ['implementation_75',['implementation',['../classsimdjson_1_1implementation.html',1,'simdjson']]],
- ['implementation_2dbase_2eh_76',['implementation-base.h',['../implementation-base_8h.html',1,'']]],
- ['implementation_5fsimdjson_5fresult_5fbase_77',['implementation_simdjson_result_base',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a108dd35fd49314820106a21afa0fb2ea',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::implementation_simdjson_result_base() noexcept=default'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a4f59b204f1eddcdc2b36e6df0639a516',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::implementation_simdjson_result_base(error_code error) noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#af8a436d40886a295f618311d3849d7e5',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::implementation_simdjson_result_base(T &&value) noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a44ff65b6194c7c1cb74180b43e438619',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::implementation_simdjson_result_base(T &&value, error_code error) noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< T >']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aarray_20_3e_78',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::array >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aarray_5fiterator_20_3e_79',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::array_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_20_3e_80',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_5freference_20_3e_81',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_5fstream_20_3e_82',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_stream >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3afield_20_3e_83',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::field >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3ajson_5fiterator_20_3e_84',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::json_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3ajson_5ftype_20_3e_85',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::json_type >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aobject_20_3e_86',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::object >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aobject_5fiterator_20_3e_87',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::object_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aparser_20_3e_88',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::parser >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3araw_5fjson_5fstring_20_3e_89',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3atoken_5fiterator_20_3e_90',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::token_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3avalue_20_3e_91',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3avalue_5fiterator_20_3e_92',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['incomplete_5farray_5for_5fobject_93',['INCOMPLETE_ARRAY_OR_OBJECT',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ab8a4df583110f900741d0b3f229f349a',1,'simdjson']]],
- ['incorrect_5ftype_94',['INCORRECT_TYPE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a1de02af1d67e8350f612eee0dcf634b4',1,'simdjson']]],
- ['index_5fout_5fof_5fbounds_95',['INDEX_OUT_OF_BOUNDS',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a80bcf6820da38abe1a2e9abeaa0f0c49',1,'simdjson']]],
- ['insufficient_5fpadding_96',['INSUFFICIENT_PADDING',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aee3335b961f2d0f732e95b359c16a69a',1,'simdjson']]],
- ['invalid_5fjson_5fpointer_97',['INVALID_JSON_POINTER',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aeeaf930969566f76840224d64ee3a9a1',1,'simdjson']]],
- ['invalid_5furi_5ffragment_98',['INVALID_URI_FRAGMENT',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a7b0467451dc0cecb41d3ea46c4a0005b',1,'simdjson']]],
- ['io_5ferror_99',['IO_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9acaec8ffce84b1acf9e6833b0f930878e',1,'simdjson']]],
- ['is_100',['is',['../classsimdjson_1_1dom_1_1element.html#a4c77063d766c7db197f8674407b504d7',1,'simdjson::dom::element']]],
- ['is_5falive_101',['is_alive',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a3170300bc331577a1435bb238cf3faff',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
- ['is_5farray_102',['is_array',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a9b82f3273bb2f2f83b8e085b7d9c6613',1,'simdjson::SIMDJSON_IMPLEMENTATION::dom_parser_implementation::is_array()'],['../classsimdjson_1_1dom_1_1element.html#afaaac6e2f58128a01a25b0a5f5abb856',1,'simdjson::dom::element::is_array() const noexcept']]],
- ['is_5fbool_103',['is_bool',['../classsimdjson_1_1dom_1_1element.html#afde562c5aae1b85a03ab6d4b040e7d13',1,'simdjson::dom::element']]],
- ['is_5fdouble_104',['is_double',['../classsimdjson_1_1dom_1_1element.html#a0d11f69ba87f55960be6f655e4e99aba',1,'simdjson::dom::element::is_double()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#a48f9e54ebd40e1c060be0a4b1d4ff823',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::is_double()']]],
- ['is_5fempty_105',['is_empty',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ad210f9115679a625ada433add55eff51',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::is_empty()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a371cf8909f04019606063e8538fd7109',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::is_empty()']]],
- ['is_5fequal_106',['is_equal',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#aa3165ea813c4c15fb9cb282e67abe6af',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::is_equal(const char *target) const noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a0ddac0ab1c69022610d8051b989b5c95',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::is_equal(std::string_view target) const noexcept']]],
- ['is_5ffree_5ffrom_5funescaped_5fquote_107',['is_free_from_unescaped_quote',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a671923a53cc070f65029698afeb9be7f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string']]],
- ['is_5fint64_108',['is_int64',['../classsimdjson_1_1dom_1_1element.html#adadf66ec37675d5f3fac9816a8aacba2',1,'simdjson::dom::element::is_int64()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#a38d6b4b4e91f30c8def71997d23454c2',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::is_int64()']]],
- ['is_5finteger_109',['is_integer',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a5ab2c9c7d29a7a6c09f78930b0100836',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::is_integer()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#af47e11e9925fd5d3d8a43cf0f7773992',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::is_integer() noexcept']]],
- ['is_5fnegative_110',['is_negative',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5083f65b71d7540ea785ec2b52604267',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::is_negative()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a2701c283de019e56624e930e936e0df0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::is_negative()']]],
- ['is_5fnull_111',['is_null',['../classsimdjson_1_1dom_1_1element.html#ae38f84f4272ae3c32b32dd6d5007ffb9',1,'simdjson::dom::element::is_null()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5ed59f01a0d4ad253f0e1c1f995ed0a7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::is_null()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a04f1c591d93d834377a9cb916c90e09b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::is_null()']]],
- ['is_5fnumber_112',['is_number',['../classsimdjson_1_1dom_1_1element.html#a1e3f78b3bee5ec3f33cc4b03dcc87981',1,'simdjson::dom::element']]],
- ['is_5fobject_113',['is_object',['../classsimdjson_1_1dom_1_1element.html#a08c7dcebf9e96fe5e4dd6df2959c0024',1,'simdjson::dom::element']]],
- ['is_5fscalar_114',['is_scalar',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ac2ea8f4340d02d9062f81419da47500b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::is_scalar()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8c2618e57ec26501dd93ff8fd5cc2191',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::is_scalar()']]],
- ['is_5fstreaming_115',['is_streaming',['../namespacesimdjson.html#a6f306690d6d088d80b0cc2717040b2d0',1,'simdjson']]],
- ['is_5fstring_116',['is_string',['../classsimdjson_1_1dom_1_1element.html#a65bd96042cc0f19dc3e0635937edded4',1,'simdjson::dom::element']]],
- ['is_5fuint64_117',['is_uint64',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#af0e89976b80a7a7dedaf8c1a7cfd64a2',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::is_uint64()'],['../classsimdjson_1_1dom_1_1element.html#ac5017726a573f59c3494b92bb66a3beb',1,'simdjson::dom::element::is_uint64()']]],
- ['iter_118',['iter',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a969e1000319391cd2bee3aed88481500',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::iter()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a2d84851f9e4fc07b3e518ea957e2d9b6',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::iter()']]],
- ['iterate_119',['iterate',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a0da712132ca4180a84907f2ca4ffbc5b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser']]],
- ['iterate_5fmany_120',['iterate_many',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a8f2dee06242abddb70eb7c07b50cef0b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::iterate_many()'],['../md_doc_iterate_many.html',1,'(Global Namespace)']]],
- ['iterator_121',['iterator',['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html#a6c3a5002801ab80b1c59422d7f3400d3',1,'simdjson::dom::document_stream::iterator::iterator()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a3b0ac5e3e64e53167a011afdd0b77345',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::iterator()'],['../classsimdjson_1_1dom_1_1array_1_1iterator.html',1,'simdjson::dom::array::iterator'],['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html',1,'simdjson::dom::document_stream::iterator'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html',1,'simdjson::dom::object::iterator'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator']]]
+ ['implementation_76',['implementation',['../classsimdjson_1_1implementation.html',1,'simdjson']]],
+ ['implementation_2dbase_2eh_77',['implementation-base.h',['../implementation-base_8h.html',1,'']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_78',['implementation_simdjson_result_base',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a108dd35fd49314820106a21afa0fb2ea',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::implementation_simdjson_result_base() noexcept=default'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a4f59b204f1eddcdc2b36e6df0639a516',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::implementation_simdjson_result_base(error_code error) noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#af8a436d40886a295f618311d3849d7e5',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::implementation_simdjson_result_base(T &&value) noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a44ff65b6194c7c1cb74180b43e438619',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::implementation_simdjson_result_base(T &&value, error_code error) noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< T >']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aarray_20_3e_79',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::array >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aarray_5fiterator_20_3e_80',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::array_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_20_3e_81',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_5freference_20_3e_82',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_5fstream_20_3e_83',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_stream >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3afield_20_3e_84',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::field >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3ajson_5fiterator_20_3e_85',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::json_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3ajson_5ftype_20_3e_86',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::json_type >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aobject_20_3e_87',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::object >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aobject_5fiterator_20_3e_88',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::object_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aparser_20_3e_89',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::parser >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3araw_5fjson_5fstring_20_3e_90',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3atoken_5fiterator_20_3e_91',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::token_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3avalue_20_3e_92',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3avalue_5fiterator_20_3e_93',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['incomplete_5farray_5for_5fobject_94',['INCOMPLETE_ARRAY_OR_OBJECT',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ab8a4df583110f900741d0b3f229f349a',1,'simdjson']]],
+ ['incorrect_5ftype_95',['INCORRECT_TYPE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a1de02af1d67e8350f612eee0dcf634b4',1,'simdjson']]],
+ ['index_5fout_5fof_5fbounds_96',['INDEX_OUT_OF_BOUNDS',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a80bcf6820da38abe1a2e9abeaa0f0c49',1,'simdjson']]],
+ ['insufficient_5fpadding_97',['INSUFFICIENT_PADDING',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aee3335b961f2d0f732e95b359c16a69a',1,'simdjson']]],
+ ['invalid_5fjson_5fpointer_98',['INVALID_JSON_POINTER',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aeeaf930969566f76840224d64ee3a9a1',1,'simdjson']]],
+ ['invalid_5furi_5ffragment_99',['INVALID_URI_FRAGMENT',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a7b0467451dc0cecb41d3ea46c4a0005b',1,'simdjson']]],
+ ['io_5ferror_100',['IO_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9acaec8ffce84b1acf9e6833b0f930878e',1,'simdjson']]],
+ ['is_101',['is',['../classsimdjson_1_1dom_1_1element.html#a4c77063d766c7db197f8674407b504d7',1,'simdjson::dom::element']]],
+ ['is_5falive_102',['is_alive',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a3170300bc331577a1435bb238cf3faff',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
+ ['is_5farray_103',['is_array',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a9b82f3273bb2f2f83b8e085b7d9c6613',1,'simdjson::SIMDJSON_IMPLEMENTATION::dom_parser_implementation::is_array()'],['../classsimdjson_1_1dom_1_1element.html#afaaac6e2f58128a01a25b0a5f5abb856',1,'simdjson::dom::element::is_array() const noexcept']]],
+ ['is_5fbool_104',['is_bool',['../classsimdjson_1_1dom_1_1element.html#afde562c5aae1b85a03ab6d4b040e7d13',1,'simdjson::dom::element']]],
+ ['is_5fdouble_105',['is_double',['../classsimdjson_1_1dom_1_1element.html#a0d11f69ba87f55960be6f655e4e99aba',1,'simdjson::dom::element::is_double()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#a48f9e54ebd40e1c060be0a4b1d4ff823',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::is_double()']]],
+ ['is_5fempty_106',['is_empty',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ad210f9115679a625ada433add55eff51',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::is_empty()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a371cf8909f04019606063e8538fd7109',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::is_empty()']]],
+ ['is_5fequal_107',['is_equal',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#aa3165ea813c4c15fb9cb282e67abe6af',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::is_equal(const char *target) const noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a0ddac0ab1c69022610d8051b989b5c95',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::is_equal(std::string_view target) const noexcept']]],
+ ['is_5ffree_5ffrom_5funescaped_5fquote_108',['is_free_from_unescaped_quote',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a671923a53cc070f65029698afeb9be7f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string']]],
+ ['is_5fint64_109',['is_int64',['../classsimdjson_1_1dom_1_1element.html#adadf66ec37675d5f3fac9816a8aacba2',1,'simdjson::dom::element::is_int64()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#a38d6b4b4e91f30c8def71997d23454c2',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::is_int64()']]],
+ ['is_5finteger_110',['is_integer',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a5ab2c9c7d29a7a6c09f78930b0100836',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::is_integer()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#af47e11e9925fd5d3d8a43cf0f7773992',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::is_integer() noexcept']]],
+ ['is_5fnegative_111',['is_negative',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5083f65b71d7540ea785ec2b52604267',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::is_negative()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a2701c283de019e56624e930e936e0df0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::is_negative()']]],
+ ['is_5fnull_112',['is_null',['../classsimdjson_1_1dom_1_1element.html#ae38f84f4272ae3c32b32dd6d5007ffb9',1,'simdjson::dom::element::is_null()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5ed59f01a0d4ad253f0e1c1f995ed0a7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::is_null()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a04f1c591d93d834377a9cb916c90e09b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::is_null()']]],
+ ['is_5fnumber_113',['is_number',['../classsimdjson_1_1dom_1_1element.html#a1e3f78b3bee5ec3f33cc4b03dcc87981',1,'simdjson::dom::element']]],
+ ['is_5fobject_114',['is_object',['../classsimdjson_1_1dom_1_1element.html#a08c7dcebf9e96fe5e4dd6df2959c0024',1,'simdjson::dom::element']]],
+ ['is_5fscalar_115',['is_scalar',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ac2ea8f4340d02d9062f81419da47500b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::is_scalar()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8c2618e57ec26501dd93ff8fd5cc2191',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::is_scalar()']]],
+ ['is_5fstreaming_116',['is_streaming',['../namespacesimdjson.html#a6f306690d6d088d80b0cc2717040b2d0',1,'simdjson']]],
+ ['is_5fstring_117',['is_string',['../classsimdjson_1_1dom_1_1element.html#a65bd96042cc0f19dc3e0635937edded4',1,'simdjson::dom::element']]],
+ ['is_5fuint64_118',['is_uint64',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#af0e89976b80a7a7dedaf8c1a7cfd64a2',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::is_uint64()'],['../classsimdjson_1_1dom_1_1element.html#ac5017726a573f59c3494b92bb66a3beb',1,'simdjson::dom::element::is_uint64()']]],
+ ['iter_119',['iter',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a969e1000319391cd2bee3aed88481500',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::iter()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a2d84851f9e4fc07b3e518ea957e2d9b6',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::iter()']]],
+ ['iterate_120',['iterate',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a0da712132ca4180a84907f2ca4ffbc5b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser']]],
+ ['iterate_5fmany_121',['iterate_many',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a8f2dee06242abddb70eb7c07b50cef0b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::iterate_many()'],['../md_doc_iterate_many.html',1,'(Global Namespace)']]],
+ ['iterator_122',['iterator',['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html#a6c3a5002801ab80b1c59422d7f3400d3',1,'simdjson::dom::document_stream::iterator::iterator()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a3b0ac5e3e64e53167a011afdd0b77345',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::iterator()'],['../classsimdjson_1_1dom_1_1array_1_1iterator.html',1,'simdjson::dom::array::iterator'],['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html',1,'simdjson::dom::document_stream::iterator'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html',1,'simdjson::dom::object::iterator'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator']]]
];
diff --git a/search/all_9.js b/search/all_9.js
index 3be549ce7..a4af20384 100644
--- a/search/all_9.js
+++ b/search/all_9.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['json_5ftype_122',['json_type',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
+ ['json_5ftype_123',['json_type',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
];
diff --git a/search/all_a.js b/search/all_a.js
index aefe151c1..c795fa14c 100644
--- a/search/all_a.js
+++ b/search/all_a.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['key_123',['key',['../classsimdjson_1_1dom_1_1key__value__pair.html#a58c41d937401cfe88ceb6e71d7dbeb45',1,'simdjson::dom::key_value_pair::key()'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a951609ca7a164b499ff19adbe2de7983',1,'simdjson::dom::object::iterator::key()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a4f49d8e89feb3ca69cf85ce2aea80c0f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::field::key()']]],
- ['key_5fc_5fstr_124',['key_c_str',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a54a99dcf9c422d5c24f3c570b6d9b6e4',1,'simdjson::dom::object::iterator']]],
- ['key_5fequals_125',['key_equals',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a4807eeb1ed5f596b587d0b61dfb550e7',1,'simdjson::dom::object::iterator']]],
- ['key_5fequals_5fcase_5finsensitive_126',['key_equals_case_insensitive',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a6d335de77b8c5b731566e48f6cacd95d',1,'simdjson::dom::object::iterator']]],
- ['key_5flength_127',['key_length',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a5ad1b60fd5df56d9fdb8bce1e08de88f',1,'simdjson::dom::object::iterator']]],
- ['key_5fvalue_5fpair_128',['key_value_pair',['../classsimdjson_1_1dom_1_1key__value__pair.html',1,'simdjson::dom']]]
+ ['key_124',['key',['../classsimdjson_1_1dom_1_1key__value__pair.html#a58c41d937401cfe88ceb6e71d7dbeb45',1,'simdjson::dom::key_value_pair::key()'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a951609ca7a164b499ff19adbe2de7983',1,'simdjson::dom::object::iterator::key()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a4f49d8e89feb3ca69cf85ce2aea80c0f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::field::key()']]],
+ ['key_5fc_5fstr_125',['key_c_str',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a54a99dcf9c422d5c24f3c570b6d9b6e4',1,'simdjson::dom::object::iterator']]],
+ ['key_5fequals_126',['key_equals',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a4807eeb1ed5f596b587d0b61dfb550e7',1,'simdjson::dom::object::iterator']]],
+ ['key_5fequals_5fcase_5finsensitive_127',['key_equals_case_insensitive',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a6d335de77b8c5b731566e48f6cacd95d',1,'simdjson::dom::object::iterator']]],
+ ['key_5flength_128',['key_length',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a5ad1b60fd5df56d9fdb8bce1e08de88f',1,'simdjson::dom::object::iterator']]],
+ ['key_5fvalue_5fpair_129',['key_value_pair',['../classsimdjson_1_1dom_1_1key__value__pair.html',1,'simdjson::dom']]]
];
diff --git a/search/all_b.js b/search/all_b.js
index 3217e80f0..15b71c3ec 100644
--- a/search/all_b.js
+++ b/search/all_b.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['len_129',['len',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a132a95e1147b80c2533d1632185a6a09',1,'simdjson::SIMDJSON_IMPLEMENTATION::dom_parser_implementation']]],
- ['length_130',['length',['../structsimdjson_1_1padded__string.html#a863fded7b347718299190ad3f501d38c',1,'simdjson::padded_string']]],
- ['load_131',['load',['../classsimdjson_1_1dom_1_1parser.html#ab3e5bbb1974a1932aead90ad63883a23',1,'simdjson::dom::parser::load()'],['../structsimdjson_1_1padded__string.html#aaf017ffe731c738da5eb31c63b987d3a',1,'simdjson::padded_string::load()']]],
- ['load_5fmany_132',['load_many',['../classsimdjson_1_1dom_1_1parser.html#a5300851ba21d0a0273a11510fd1c378a',1,'simdjson::dom::parser']]]
+ ['len_130',['len',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a132a95e1147b80c2533d1632185a6a09',1,'simdjson::SIMDJSON_IMPLEMENTATION::dom_parser_implementation']]],
+ ['length_131',['length',['../structsimdjson_1_1padded__string.html#a863fded7b347718299190ad3f501d38c',1,'simdjson::padded_string']]],
+ ['load_132',['load',['../classsimdjson_1_1dom_1_1parser.html#ab3e5bbb1974a1932aead90ad63883a23',1,'simdjson::dom::parser::load()'],['../structsimdjson_1_1padded__string.html#aaf017ffe731c738da5eb31c63b987d3a',1,'simdjson::padded_string::load()']]],
+ ['load_5fmany_133',['load_many',['../classsimdjson_1_1dom_1_1parser.html#a5300851ba21d0a0273a11510fd1c378a',1,'simdjson::dom::parser']]]
];
diff --git a/search/all_c.js b/search/all_c.js
index 028b96be8..7e6a5fe90 100644
--- a/search/all_c.js
+++ b/search/all_c.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['max_5fcapacity_133',['max_capacity',['../classsimdjson_1_1dom_1_1parser.html#a8bfde4193783adef9c5f12dfc4da3bc0',1,'simdjson::dom::parser::max_capacity()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a006ad62e81d1ffa0fa898b586095208b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::max_capacity()']]],
- ['max_5fdepth_134',['max_depth',['../classsimdjson_1_1dom_1_1parser.html#a209d15b8f87ad69f5fbaccdd5b6b5441',1,'simdjson::dom::parser::max_depth()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a9dd8dfaa40f0faec56e31f976e4c2c94',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::max_depth()']]],
- ['memalloc_135',['MEMALLOC',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aa0e71422c8ae80ebaa11d8d74d64737f',1,'simdjson']]],
- ['minify_136',['minify',['../namespacesimdjson.html#aeb4ef5cab43d52da3fdd99cb689aff2c',1,'simdjson::minify(T x)'],['../namespacesimdjson.html#a94bb4244756d764cf0ed7de180ae6520',1,'simdjson::minify(const char *buf, size_t len, char *dst, size_t &dst_len) noexcept']]]
+ ['max_5fcapacity_134',['max_capacity',['../classsimdjson_1_1dom_1_1parser.html#a8bfde4193783adef9c5f12dfc4da3bc0',1,'simdjson::dom::parser::max_capacity()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a006ad62e81d1ffa0fa898b586095208b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::max_capacity()']]],
+ ['max_5fdepth_135',['max_depth',['../classsimdjson_1_1dom_1_1parser.html#a209d15b8f87ad69f5fbaccdd5b6b5441',1,'simdjson::dom::parser::max_depth()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a9dd8dfaa40f0faec56e31f976e4c2c94',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::max_depth()']]],
+ ['memalloc_136',['MEMALLOC',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aa0e71422c8ae80ebaa11d8d74d64737f',1,'simdjson']]],
+ ['minify_137',['minify',['../namespacesimdjson.html#aeb4ef5cab43d52da3fdd99cb689aff2c',1,'simdjson::minify(T x)'],['../namespacesimdjson.html#a94bb4244756d764cf0ed7de180ae6520',1,'simdjson::minify(const char *buf, size_t len, char *dst, size_t &dst_len) noexcept']]]
];
diff --git a/search/all_d.js b/search/all_d.js
index f7a3f35bb..c4c667aa4 100644
--- a/search/all_d.js
+++ b/search/all_d.js
@@ -1,12 +1,12 @@
var searchData=
[
- ['n_5fatom_5ferror_137',['N_ATOM_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a4e161f7bd0b3ca10f41a220a75de8cde',1,'simdjson']]],
- ['name_138',['name',['../classsimdjson_1_1implementation.html#a404c32ec6187ac0fb5b2ec6b5aea4abd',1,'simdjson::implementation']]],
- ['no_5fsuch_5ffield_139',['NO_SUCH_FIELD',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a4a2c71f8eca438b3f0553a2811bdab9a',1,'simdjson']]],
- ['null_140',['null',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330a37a6259cc0c1dae299a7866489dff0bd',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
- ['number_141',['number',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330ab1bc248a7ff2b2e95569f56de68615df',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]],
- ['number_5ferror_142',['NUMBER_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9adfcabbbd1ddb0843a0f320e062866ae8',1,'simdjson']]],
- ['number_5fof_5fslots_143',['number_of_slots',['../classsimdjson_1_1dom_1_1array.html#a26e66312190e016c22093292974490ff',1,'simdjson::dom::array']]],
- ['number_5fout_5fof_5frange_144',['NUMBER_OUT_OF_RANGE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a8c779dcc8fb73a4eb8891af3ef65eebb',1,'simdjson']]],
- ['number_5ftype_145',['number_type',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a5a5f83e81a35457b070256b78e16bf3f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
+ ['n_5fatom_5ferror_138',['N_ATOM_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a4e161f7bd0b3ca10f41a220a75de8cde',1,'simdjson']]],
+ ['name_139',['name',['../classsimdjson_1_1implementation.html#a404c32ec6187ac0fb5b2ec6b5aea4abd',1,'simdjson::implementation']]],
+ ['no_5fsuch_5ffield_140',['NO_SUCH_FIELD',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a4a2c71f8eca438b3f0553a2811bdab9a',1,'simdjson']]],
+ ['null_141',['null',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330a37a6259cc0c1dae299a7866489dff0bd',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
+ ['number_142',['number',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330ab1bc248a7ff2b2e95569f56de68615df',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]],
+ ['number_5ferror_143',['NUMBER_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9adfcabbbd1ddb0843a0f320e062866ae8',1,'simdjson']]],
+ ['number_5fof_5fslots_144',['number_of_slots',['../classsimdjson_1_1dom_1_1array.html#a26e66312190e016c22093292974490ff',1,'simdjson::dom::array']]],
+ ['number_5fout_5fof_5frange_145',['NUMBER_OUT_OF_RANGE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a8c779dcc8fb73a4eb8891af3ef65eebb',1,'simdjson']]],
+ ['number_5ftype_146',['number_type',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a5a5f83e81a35457b070256b78e16bf3f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
];
diff --git a/search/all_e.js b/search/all_e.js
index d90b82508..d53d6f8ca 100644
--- a/search/all_e.js
+++ b/search/all_e.js
@@ -1,29 +1,29 @@
var searchData=
[
- ['object_146',['object',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330aa8cfde6331bd59eb2ac96f8911c4b666',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object()'],['../classsimdjson_1_1dom_1_1object.html#ae2e1a8cbaab9d352495d1dc993407be3',1,'simdjson::dom::object::object()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#a034b27d7ff75832a574c2069af267111',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::object()'],['../classsimdjson_1_1dom_1_1object.html',1,'simdjson::dom::object'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object']]],
- ['object_20iteration_147',['Object iteration',['../group__object.html',1,'']]],
- ['object_5fiterator_148',['object_iterator',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator.html#a9fce67dabeb5dcccd16fa531febec666',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object_iterator::object_iterator()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object_iterator']]],
- ['open_5fcontainer_149',['open_container',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1open__container.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['open_5fcontainers_150',['open_containers',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a9c67c6c782f1296319a58ec1586f2329',1,'simdjson::SIMDJSON_IMPLEMENTATION::dom_parser_implementation']]],
- ['operator_20array_151',['operator array',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a93756146a65e835b9358cc652dc53396',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator array()'],['../classsimdjson_1_1dom_1_1element.html#a71d6bfa627dd66e202f8b402f91a44ac',1,'simdjson::dom::element::operator array()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a08307c0a5552cf8cb06613ed1de48eac',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator array()']]],
- ['operator_20bool_152',['operator bool',['../classsimdjson_1_1dom_1_1element.html#ab036e52a73d5bd046e1f2650a31dab30',1,'simdjson::dom::element::operator bool()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a7df7ba140c9d6398fef2c6963da82230',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator bool()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#af7b51d9048d388235f3936c8fa30a2f7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator bool()']]],
- ['operator_20const_20char_20_2a_153',['operator const char *',['../classsimdjson_1_1dom_1_1element.html#a8f9569b40dd2b23aab9fbf2229749589',1,'simdjson::dom::element']]],
- ['operator_20double_154',['operator double',['../classsimdjson_1_1dom_1_1element.html#a743b5f1ef4202d8fb8fb317e612385f3',1,'simdjson::dom::element::operator double()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ae052e098bfbfde398845060a8d4f572f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator double()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a53f99cedf58e62c1382a4d5a585e05a0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator double()']]],
- ['operator_20int64_5ft_155',['operator int64_t',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5d50aa0d396fc49855d3c0c571b07a25',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator int64_t()'],['../classsimdjson_1_1dom_1_1element.html#afb98fdfcb6ddf19071cd2300613218d3',1,'simdjson::dom::element::operator int64_t()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a30f182e71d3c13d2656ba5983862be57',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator int64_t()']]],
- ['operator_20object_156',['operator object',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a6cd27fe6dc9062b5380db757d49c3f7b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator object()'],['../classsimdjson_1_1dom_1_1element.html#a23f4d8c38309b0184e658d8a9697a177',1,'simdjson::dom::element::operator object()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a89519c599fd938a6a750262111fc5757',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator object()']]],
- ['operator_20padded_5fstring_5fview_157',['operator padded_string_view',['../structsimdjson_1_1padded__string.html#a0e5b8e8917478af4e82e023c2efa40e9',1,'simdjson::padded_string']]],
- ['operator_20raw_5fjson_5fstring_158',['operator raw_json_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a78411bf36298e3468ac83f3562b75d83',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator raw_json_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a85d69a32b4b95f353abe6214ecc98619',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator raw_json_string()']]],
- ['operator_20t_26_26_159',['operator T&&',['../structsimdjson_1_1simdjson__result.html#afcce23c64894ec135fe8c2d255d2121b',1,'simdjson::simdjson_result::operator T&&()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a11133790f4386ea4d11567a3a0806096',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::operator T&&()']]],
- ['operator_20uint64_5ft_160',['operator uint64_t',['../classsimdjson_1_1dom_1_1element.html#ae3c0226046e29cfb0e868c5251a87e53',1,'simdjson::dom::element::operator uint64_t()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a847db7139319155ef5fa2d4af7063163',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator uint64_t()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#afb7be23d4f1006d5eae234d8c8c8d286',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator uint64_t()']]],
- ['operator_20value_161',['operator value',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ad12185e1993ebcad73eb5ce82f5de8f7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
- ['operator_21_3d_162',['operator!=',['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html#a56c69d73c7e424e008a28771661ab218',1,'simdjson::dom::document_stream::iterator::operator!=()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a05396b8e8322363b523b3bf9730a31f1',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::operator!=()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#abbca17b48bd6c2b045b659076f1f64ce',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator::operator!=()'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a1da5ce328cc2609432be961736c6e810',1,'simdjson::dom::object::iterator::operator!=()'],['../classsimdjson_1_1dom_1_1array_1_1iterator.html#a2680a46eeece638bc352bcf6a169bcf6',1,'simdjson::dom::array::iterator::operator!=(const iterator &other) const noexcept']]],
- ['operator_2a_163',['operator*',['../classsimdjson_1_1dom_1_1array_1_1iterator.html#a90254656d4e7a8826246d1f931647eff',1,'simdjson::dom::array::iterator::operator*()'],['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html#a09b193fe348fa8a267b96edd96f7515e',1,'simdjson::dom::document_stream::iterator::operator*()'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a688f6c7f451602bb3385a93252c0828a',1,'simdjson::dom::object::iterator::operator*()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#a1577fb5a95f92a4a1aaa8eee6440d572',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator::operator*()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a5fe3ce985cc1921d5917667d6b25841b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::operator*() noexcept']]],
- ['operator_2b_2b_164',['operator++',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a03e0c8d93b86a18b10370d51b99548ef',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::operator++()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#a55e0ae33e5e5835c841fd082edab5937',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator::operator++()'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a83b3c467632c017400f95ff05d2367b3',1,'simdjson::dom::object::iterator::operator++(int) noexcept'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#aa26738ad08b7de3be4621a75863118ab',1,'simdjson::dom::object::iterator::operator++() noexcept'],['../classsimdjson_1_1dom_1_1array_1_1iterator.html#a46454681bd5e3a938c04eb89210e7966',1,'simdjson::dom::array::iterator::operator++(int) noexcept'],['../classsimdjson_1_1dom_1_1array_1_1iterator.html#a6ec91111a2bcc9e378d30b47b613fac5',1,'simdjson::dom::array::iterator::operator++() noexcept'],['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html#a7b05ed75aa2b2a6d3a17204b9863956a',1,'simdjson::dom::document_stream::iterator::operator++()']]],
- ['operator_3c_3c_165',['operator<<',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a386f80798c223c5fdbfc4dd9066a6b99',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson_result< json_type > &type) noexcept(false)'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ab10943c6107de5337f376a6939f817af',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, json_type type) noexcept'],['../namespacesimdjson.html#a43514fe76c3095e45f30a050a9551d27',1,'simdjson::operator<<()'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac3a4f6af474f2b5f6d749f7452bb5477',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value x)'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a24f9bbfe8b5a3017b4dd4b72dbccec4d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array value)'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a6f753d5e1bc479321c51b54392a96a65',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document &value)'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ae52a82c2f754a47eb9dac12223b3311d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object value)'],['../namespacesimdjson.html#a537445bb236ae76d2b5559b1851b7108',1,'simdjson::operator<<(std::ostream &out, const padded_string &s)'],['../namespacesimdjson.html#a39bbbf605c0068e4a65c2d8885727fc9',1,'simdjson::operator<<(std::ostream &out, simdjson_result< padded_string > &s) noexcept(false)'],['../namespacesimdjson.html#a61a74357c3e9313ad84c5f1243fdf581',1,'simdjson::operator<<(std::ostream &out, simdjson_result< padded_string_view > &s) noexcept(false)']]],
- ['operator_3d_166',['operator=',['../structsimdjson_1_1padded__string.html#aa43b3a8e0df4edcf960f04441dd9b930',1,'simdjson::padded_string::operator=()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#ac3c10596a0934f4f5375b986a35f90db',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::operator=()'],['../classsimdjson_1_1dom_1_1parser.html#af5b61dda345cef1feba7c4529dfe0259',1,'simdjson::dom::parser::operator=()'],['../classsimdjson_1_1dom_1_1document__stream.html#a162d002972b41bbb7d8e4021341e15ba',1,'simdjson::dom::document_stream::operator=()'],['../classsimdjson_1_1dom_1_1document.html#a336814aa587d9ca605e1548b22b2b80c',1,'simdjson::dom::document::operator=()']]],
- ['operator_3d_3d_167',['operator==',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#aab771b17058b0c93bdd0a8679c2c4d84',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator==()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#a20cd55e63cf5bdc1561f771b4db1ac1b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator::operator==()']]],
- ['operator_5b_5d_168',['operator[]',['../classsimdjson_1_1dom_1_1object.html#a2691ceae488be203aac2d5ef5b67347f',1,'simdjson::dom::object::operator[](const char *key) const noexcept'],['../classsimdjson_1_1dom_1_1object.html#acc66a2f2eb74fbe359d4064531764f50',1,'simdjson::dom::object::operator[](std::string_view key) const noexcept'],['../classsimdjson_1_1dom_1_1element.html#a367d22eeabc1881a8eb18bae2f2ba3b8',1,'simdjson::dom::element::operator[](const char *key) const noexcept'],['../classsimdjson_1_1dom_1_1element.html#aca693f57d73a5ce95d1f7bedf67289b7',1,'simdjson::dom::element::operator[](std::string_view key) const noexcept']]],
- ['out_5fof_5fbounds_169',['OUT_OF_BOUNDS',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a3f94172e04ae52a978ea62157140b0de',1,'simdjson']]],
- ['out_5fof_5forder_5fiteration_170',['OUT_OF_ORDER_ITERATION',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a351bcafefbbc80a6dadc1ea6c27a35e6',1,'simdjson']]],
- ['string_5fview_171',['string_view',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8e5f2ff46639e6c1cffb73d4e071e491',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::string_view()'],['../classsimdjson_1_1dom_1_1element.html#a83adcf723abff34d7c1e8ec0e69d967b',1,'simdjson::dom::element::string_view()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a30e8df60ace82837a17e52d5e457ac52',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::string_view()'],['../structsimdjson_1_1padded__string.html#a4bf80c11155b8067a87bd76762bee23b',1,'simdjson::padded_string::string_view()']]]
+ ['object_147',['object',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330aa8cfde6331bd59eb2ac96f8911c4b666',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object()'],['../classsimdjson_1_1dom_1_1object.html#ae2e1a8cbaab9d352495d1dc993407be3',1,'simdjson::dom::object::object()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#a034b27d7ff75832a574c2069af267111',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::object()'],['../classsimdjson_1_1dom_1_1object.html',1,'simdjson::dom::object'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object']]],
+ ['object_20iteration_148',['Object iteration',['../group__object.html',1,'']]],
+ ['object_5fiterator_149',['object_iterator',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator.html#a9fce67dabeb5dcccd16fa531febec666',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object_iterator::object_iterator()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object_iterator']]],
+ ['open_5fcontainer_150',['open_container',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1open__container.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['open_5fcontainers_151',['open_containers',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a9c67c6c782f1296319a58ec1586f2329',1,'simdjson::SIMDJSON_IMPLEMENTATION::dom_parser_implementation']]],
+ ['operator_20array_152',['operator array',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a93756146a65e835b9358cc652dc53396',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator array()'],['../classsimdjson_1_1dom_1_1element.html#a71d6bfa627dd66e202f8b402f91a44ac',1,'simdjson::dom::element::operator array()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a08307c0a5552cf8cb06613ed1de48eac',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator array()']]],
+ ['operator_20bool_153',['operator bool',['../classsimdjson_1_1dom_1_1element.html#ab036e52a73d5bd046e1f2650a31dab30',1,'simdjson::dom::element::operator bool()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a7df7ba140c9d6398fef2c6963da82230',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator bool()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#af7b51d9048d388235f3936c8fa30a2f7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator bool()']]],
+ ['operator_20const_20char_20_2a_154',['operator const char *',['../classsimdjson_1_1dom_1_1element.html#a8f9569b40dd2b23aab9fbf2229749589',1,'simdjson::dom::element']]],
+ ['operator_20double_155',['operator double',['../classsimdjson_1_1dom_1_1element.html#a743b5f1ef4202d8fb8fb317e612385f3',1,'simdjson::dom::element::operator double()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ae052e098bfbfde398845060a8d4f572f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator double()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a53f99cedf58e62c1382a4d5a585e05a0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator double()']]],
+ ['operator_20int64_5ft_156',['operator int64_t',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5d50aa0d396fc49855d3c0c571b07a25',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator int64_t()'],['../classsimdjson_1_1dom_1_1element.html#afb98fdfcb6ddf19071cd2300613218d3',1,'simdjson::dom::element::operator int64_t()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a30f182e71d3c13d2656ba5983862be57',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator int64_t()']]],
+ ['operator_20object_157',['operator object',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a6cd27fe6dc9062b5380db757d49c3f7b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator object()'],['../classsimdjson_1_1dom_1_1element.html#a23f4d8c38309b0184e658d8a9697a177',1,'simdjson::dom::element::operator object()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a89519c599fd938a6a750262111fc5757',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator object()']]],
+ ['operator_20padded_5fstring_5fview_158',['operator padded_string_view',['../structsimdjson_1_1padded__string.html#a0e5b8e8917478af4e82e023c2efa40e9',1,'simdjson::padded_string']]],
+ ['operator_20raw_5fjson_5fstring_159',['operator raw_json_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a78411bf36298e3468ac83f3562b75d83',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator raw_json_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a85d69a32b4b95f353abe6214ecc98619',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator raw_json_string()']]],
+ ['operator_20t_26_26_160',['operator T&&',['../structsimdjson_1_1simdjson__result.html#afcce23c64894ec135fe8c2d255d2121b',1,'simdjson::simdjson_result::operator T&&()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a11133790f4386ea4d11567a3a0806096',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::operator T&&()']]],
+ ['operator_20uint64_5ft_161',['operator uint64_t',['../classsimdjson_1_1dom_1_1element.html#ae3c0226046e29cfb0e868c5251a87e53',1,'simdjson::dom::element::operator uint64_t()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a847db7139319155ef5fa2d4af7063163',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator uint64_t()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#afb7be23d4f1006d5eae234d8c8c8d286',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator uint64_t()']]],
+ ['operator_20value_162',['operator value',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ad12185e1993ebcad73eb5ce82f5de8f7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
+ ['operator_21_3d_163',['operator!=',['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html#a56c69d73c7e424e008a28771661ab218',1,'simdjson::dom::document_stream::iterator::operator!=()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a05396b8e8322363b523b3bf9730a31f1',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::operator!=()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#abbca17b48bd6c2b045b659076f1f64ce',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator::operator!=()'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a1da5ce328cc2609432be961736c6e810',1,'simdjson::dom::object::iterator::operator!=()'],['../classsimdjson_1_1dom_1_1array_1_1iterator.html#a2680a46eeece638bc352bcf6a169bcf6',1,'simdjson::dom::array::iterator::operator!=(const iterator &other) const noexcept']]],
+ ['operator_2a_164',['operator*',['../classsimdjson_1_1dom_1_1array_1_1iterator.html#a90254656d4e7a8826246d1f931647eff',1,'simdjson::dom::array::iterator::operator*()'],['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html#a09b193fe348fa8a267b96edd96f7515e',1,'simdjson::dom::document_stream::iterator::operator*()'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a688f6c7f451602bb3385a93252c0828a',1,'simdjson::dom::object::iterator::operator*()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#a1577fb5a95f92a4a1aaa8eee6440d572',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator::operator*()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a5fe3ce985cc1921d5917667d6b25841b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::operator*() noexcept']]],
+ ['operator_2b_2b_165',['operator++',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a03e0c8d93b86a18b10370d51b99548ef',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::operator++()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#a55e0ae33e5e5835c841fd082edab5937',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator::operator++()'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a83b3c467632c017400f95ff05d2367b3',1,'simdjson::dom::object::iterator::operator++(int) noexcept'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#aa26738ad08b7de3be4621a75863118ab',1,'simdjson::dom::object::iterator::operator++() noexcept'],['../classsimdjson_1_1dom_1_1array_1_1iterator.html#a46454681bd5e3a938c04eb89210e7966',1,'simdjson::dom::array::iterator::operator++(int) noexcept'],['../classsimdjson_1_1dom_1_1array_1_1iterator.html#a6ec91111a2bcc9e378d30b47b613fac5',1,'simdjson::dom::array::iterator::operator++() noexcept'],['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html#a7b05ed75aa2b2a6d3a17204b9863956a',1,'simdjson::dom::document_stream::iterator::operator++()']]],
+ ['operator_3c_3c_166',['operator<<',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a386f80798c223c5fdbfc4dd9066a6b99',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson_result< json_type > &type) noexcept(false)'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ab10943c6107de5337f376a6939f817af',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, json_type type) noexcept'],['../namespacesimdjson.html#a43514fe76c3095e45f30a050a9551d27',1,'simdjson::operator<<()'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac3a4f6af474f2b5f6d749f7452bb5477',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value x)'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a24f9bbfe8b5a3017b4dd4b72dbccec4d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array value)'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a6f753d5e1bc479321c51b54392a96a65',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document &value)'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ae52a82c2f754a47eb9dac12223b3311d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object value)'],['../namespacesimdjson.html#a537445bb236ae76d2b5559b1851b7108',1,'simdjson::operator<<(std::ostream &out, const padded_string &s)'],['../namespacesimdjson.html#a39bbbf605c0068e4a65c2d8885727fc9',1,'simdjson::operator<<(std::ostream &out, simdjson_result< padded_string > &s) noexcept(false)'],['../namespacesimdjson.html#a61a74357c3e9313ad84c5f1243fdf581',1,'simdjson::operator<<(std::ostream &out, simdjson_result< padded_string_view > &s) noexcept(false)']]],
+ ['operator_3d_167',['operator=',['../structsimdjson_1_1padded__string.html#aa43b3a8e0df4edcf960f04441dd9b930',1,'simdjson::padded_string::operator=()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#ac3c10596a0934f4f5375b986a35f90db',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::operator=()'],['../classsimdjson_1_1dom_1_1parser.html#af5b61dda345cef1feba7c4529dfe0259',1,'simdjson::dom::parser::operator=()'],['../classsimdjson_1_1dom_1_1document__stream.html#a162d002972b41bbb7d8e4021341e15ba',1,'simdjson::dom::document_stream::operator=()'],['../classsimdjson_1_1dom_1_1document.html#a336814aa587d9ca605e1548b22b2b80c',1,'simdjson::dom::document::operator=()']]],
+ ['operator_3d_3d_168',['operator==',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#aab771b17058b0c93bdd0a8679c2c4d84',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator==()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#a20cd55e63cf5bdc1561f771b4db1ac1b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator::operator==()']]],
+ ['operator_5b_5d_169',['operator[]',['../classsimdjson_1_1dom_1_1object.html#a2691ceae488be203aac2d5ef5b67347f',1,'simdjson::dom::object::operator[](const char *key) const noexcept'],['../classsimdjson_1_1dom_1_1object.html#acc66a2f2eb74fbe359d4064531764f50',1,'simdjson::dom::object::operator[](std::string_view key) const noexcept'],['../classsimdjson_1_1dom_1_1element.html#a367d22eeabc1881a8eb18bae2f2ba3b8',1,'simdjson::dom::element::operator[](const char *key) const noexcept'],['../classsimdjson_1_1dom_1_1element.html#aca693f57d73a5ce95d1f7bedf67289b7',1,'simdjson::dom::element::operator[](std::string_view key) const noexcept']]],
+ ['out_5fof_5fbounds_170',['OUT_OF_BOUNDS',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a3f94172e04ae52a978ea62157140b0de',1,'simdjson']]],
+ ['out_5fof_5forder_5fiteration_171',['OUT_OF_ORDER_ITERATION',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a351bcafefbbc80a6dadc1ea6c27a35e6',1,'simdjson']]],
+ ['string_5fview_172',['string_view',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8e5f2ff46639e6c1cffb73d4e071e491',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::string_view()'],['../classsimdjson_1_1dom_1_1element.html#a83adcf723abff34d7c1e8ec0e69d967b',1,'simdjson::dom::element::string_view()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a30e8df60ace82837a17e52d5e457ac52',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::string_view()'],['../structsimdjson_1_1padded__string.html#a4bf80c11155b8067a87bd76762bee23b',1,'simdjson::padded_string::string_view()']]]
];
diff --git a/search/all_f.js b/search/all_f.js
index 2e5aafee7..a3f6c7384 100644
--- a/search/all_f.js
+++ b/search/all_f.js
@@ -1,14 +1,14 @@
var searchData=
[
- ['padded_5fstring_172',['padded_string',['../structsimdjson_1_1padded__string.html#a8e10a3a5a46a4d58459b052975b0bf66',1,'simdjson::padded_string::padded_string() noexcept'],['../structsimdjson_1_1padded__string.html#ac06ec74c78934565cdf50df163d35476',1,'simdjson::padded_string::padded_string(size_t length) noexcept'],['../structsimdjson_1_1padded__string.html#a1b15f9345c0215e7548df1aa0105de98',1,'simdjson::padded_string::padded_string(const char *data, size_t length) noexcept'],['../structsimdjson_1_1padded__string.html#a44fb0f219f05528e606f79dab7c32482',1,'simdjson::padded_string::padded_string(const std::string &str_) noexcept'],['../structsimdjson_1_1padded__string.html#a6199f5bf259fcac114addeef569cf5a5',1,'simdjson::padded_string::padded_string(std::string_view sv_) noexcept'],['../structsimdjson_1_1padded__string.html#a952eaf7ff8ddf252d9c00a693978a4da',1,'simdjson::padded_string::padded_string(padded_string &&o) noexcept'],['../structsimdjson_1_1padded__string.html',1,'simdjson::padded_string']]],
- ['padded_5fstring_5fview_173',['padded_string_view',['../classsimdjson_1_1padded__string__view.html#a12b33830793e7ab1953b961088a83c3d',1,'simdjson::padded_string_view::padded_string_view(std::string_view s, size_t capacity) noexcept'],['../classsimdjson_1_1padded__string__view.html#aae57856a217294ac218b6372a5e37d9a',1,'simdjson::padded_string_view::padded_string_view(const std::string &s) noexcept'],['../classsimdjson_1_1padded__string__view.html#aa338ad56304bc79e6ca1fab64af41de0',1,'simdjson::padded_string_view::padded_string_view() noexcept=default'],['../classsimdjson_1_1padded__string__view.html#a47ac0063f7dd0ffd832c5e4439f2de30',1,'simdjson::padded_string_view::padded_string_view(const char *s, size_t len, size_t capacity) noexcept'],['../classsimdjson_1_1padded__string__view.html#a184b54acd28046a9c4f2a6cfa5419779',1,'simdjson::padded_string_view::padded_string_view(const uint8_t *s, size_t len, size_t capacity) noexcept'],['../classsimdjson_1_1padded__string__view.html',1,'simdjson::padded_string_view']]],
- ['padding_174',['padding',['../classsimdjson_1_1padded__string__view.html#a934e7272d22d6024383eafe07b06773c',1,'simdjson::padded_string_view']]],
- ['parse_175',['parse',['../classsimdjson_1_1dom_1_1parser.html#a16c7d1e28125ef7d5703244483f70984',1,'simdjson::dom::parser']]],
- ['parse_5finto_5fdocument_176',['parse_into_document',['../classsimdjson_1_1dom_1_1parser.html#a1afc4d3b429363b503a5605d66081e30',1,'simdjson::dom::parser']]],
- ['parse_5fmany_177',['parse_many',['../md_doc_parse_many.html',1,'(Global Namespace)'],['../classsimdjson_1_1dom_1_1parser.html#afb18710d2e2ef0fd40dda4887282bdb2',1,'simdjson::dom::parser::parse_many()']]],
- ['parsedjson_178',['ParsedJson',['../namespacesimdjson.html#a9245ff68919610377256bb9b21070e2a',1,'simdjson']]],
- ['parser_179',['parser',['../classsimdjson_1_1dom_1_1parser.html#a09370efac9e1b7d9b4a8349332e026c3',1,'simdjson::dom::parser::parser(size_t max_capacity=SIMDJSON_MAXSIZE_BYTES) noexcept'],['../classsimdjson_1_1dom_1_1parser.html#a3f3c80565fe63857e2901c48e7bed64d',1,'simdjson::dom::parser::parser(parser &&other) noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a76abd4d78f0c26d80d3bf436ce212e00',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::parser()'],['../classsimdjson_1_1dom_1_1parser.html',1,'simdjson::dom::parser'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser']]],
- ['parser_5fin_5fuse_180',['PARSER_IN_USE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ae9067bb5cb6283141b1c66466005ac0d',1,'simdjson']]],
- ['payload_181',['payload',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#aa17e81138859bcef934d9502a9852049',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]],
- ['performance_20notes_182',['Performance Notes',['../md_doc_performance.html',1,'']]]
+ ['padded_5fstring_173',['padded_string',['../structsimdjson_1_1padded__string.html#a8e10a3a5a46a4d58459b052975b0bf66',1,'simdjson::padded_string::padded_string() noexcept'],['../structsimdjson_1_1padded__string.html#ac06ec74c78934565cdf50df163d35476',1,'simdjson::padded_string::padded_string(size_t length) noexcept'],['../structsimdjson_1_1padded__string.html#a1b15f9345c0215e7548df1aa0105de98',1,'simdjson::padded_string::padded_string(const char *data, size_t length) noexcept'],['../structsimdjson_1_1padded__string.html#a44fb0f219f05528e606f79dab7c32482',1,'simdjson::padded_string::padded_string(const std::string &str_) noexcept'],['../structsimdjson_1_1padded__string.html#a6199f5bf259fcac114addeef569cf5a5',1,'simdjson::padded_string::padded_string(std::string_view sv_) noexcept'],['../structsimdjson_1_1padded__string.html#a952eaf7ff8ddf252d9c00a693978a4da',1,'simdjson::padded_string::padded_string(padded_string &&o) noexcept'],['../structsimdjson_1_1padded__string.html',1,'simdjson::padded_string']]],
+ ['padded_5fstring_5fview_174',['padded_string_view',['../classsimdjson_1_1padded__string__view.html#a12b33830793e7ab1953b961088a83c3d',1,'simdjson::padded_string_view::padded_string_view(std::string_view s, size_t capacity) noexcept'],['../classsimdjson_1_1padded__string__view.html#aae57856a217294ac218b6372a5e37d9a',1,'simdjson::padded_string_view::padded_string_view(const std::string &s) noexcept'],['../classsimdjson_1_1padded__string__view.html#aa338ad56304bc79e6ca1fab64af41de0',1,'simdjson::padded_string_view::padded_string_view() noexcept=default'],['../classsimdjson_1_1padded__string__view.html#a47ac0063f7dd0ffd832c5e4439f2de30',1,'simdjson::padded_string_view::padded_string_view(const char *s, size_t len, size_t capacity) noexcept'],['../classsimdjson_1_1padded__string__view.html#a184b54acd28046a9c4f2a6cfa5419779',1,'simdjson::padded_string_view::padded_string_view(const uint8_t *s, size_t len, size_t capacity) noexcept'],['../classsimdjson_1_1padded__string__view.html',1,'simdjson::padded_string_view']]],
+ ['padding_175',['padding',['../classsimdjson_1_1padded__string__view.html#a934e7272d22d6024383eafe07b06773c',1,'simdjson::padded_string_view']]],
+ ['parse_176',['parse',['../classsimdjson_1_1dom_1_1parser.html#a16c7d1e28125ef7d5703244483f70984',1,'simdjson::dom::parser']]],
+ ['parse_5finto_5fdocument_177',['parse_into_document',['../classsimdjson_1_1dom_1_1parser.html#a1afc4d3b429363b503a5605d66081e30',1,'simdjson::dom::parser']]],
+ ['parse_5fmany_178',['parse_many',['../md_doc_parse_many.html',1,'(Global Namespace)'],['../classsimdjson_1_1dom_1_1parser.html#afb18710d2e2ef0fd40dda4887282bdb2',1,'simdjson::dom::parser::parse_many()']]],
+ ['parsedjson_179',['ParsedJson',['../namespacesimdjson.html#a9245ff68919610377256bb9b21070e2a',1,'simdjson']]],
+ ['parser_180',['parser',['../classsimdjson_1_1dom_1_1parser.html#a09370efac9e1b7d9b4a8349332e026c3',1,'simdjson::dom::parser::parser(size_t max_capacity=SIMDJSON_MAXSIZE_BYTES) noexcept'],['../classsimdjson_1_1dom_1_1parser.html#a3f3c80565fe63857e2901c48e7bed64d',1,'simdjson::dom::parser::parser(parser &&other) noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a76abd4d78f0c26d80d3bf436ce212e00',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::parser()'],['../classsimdjson_1_1dom_1_1parser.html',1,'simdjson::dom::parser'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser']]],
+ ['parser_5fin_5fuse_181',['PARSER_IN_USE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ae9067bb5cb6283141b1c66466005ac0d',1,'simdjson']]],
+ ['payload_182',['payload',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#aa17e81138859bcef934d9502a9852049',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]],
+ ['performance_20notes_183',['Performance Notes',['../md_doc_performance.html',1,'']]]
];
diff --git a/search/classes_0.js b/search/classes_0.js
index f3fee03ac..91649853d 100644
--- a/search/classes_0.js
+++ b/search/classes_0.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['array_274',['array',['../classsimdjson_1_1dom_1_1array.html',1,'simdjson::dom::array'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array']]],
- ['array_5fiterator_275',['array_iterator',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
+ ['array_276',['array',['../classsimdjson_1_1dom_1_1array.html',1,'simdjson::dom::array'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array']]],
+ ['array_5fiterator_277',['array_iterator',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
];
diff --git a/search/classes_1.js b/search/classes_1.js
index a3c40ce6d..839f33deb 100644
--- a/search/classes_1.js
+++ b/search/classes_1.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['document_276',['document',['../classsimdjson_1_1dom_1_1document.html',1,'simdjson::dom::document'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
- ['document_5freference_277',['document_reference',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
- ['document_5fstream_278',['document_stream',['../classsimdjson_1_1dom_1_1document__stream.html',1,'simdjson::dom::document_stream'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream']]],
- ['dom_5fparser_5fimplementation_279',['dom_parser_implementation',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]]
+ ['document_278',['document',['../classsimdjson_1_1dom_1_1document.html',1,'simdjson::dom::document'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
+ ['document_5freference_279',['document_reference',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
+ ['document_5fstream_280',['document_stream',['../classsimdjson_1_1dom_1_1document__stream.html',1,'simdjson::dom::document_stream'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream']]],
+ ['dom_5fparser_5fimplementation_281',['dom_parser_implementation',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]]
];
diff --git a/search/classes_2.js b/search/classes_2.js
index a5b48e02d..3ed60a758 100644
--- a/search/classes_2.js
+++ b/search/classes_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['element_280',['element',['../classsimdjson_1_1dom_1_1element.html',1,'simdjson::dom']]]
+ ['element_282',['element',['../classsimdjson_1_1dom_1_1element.html',1,'simdjson::dom']]]
];
diff --git a/search/classes_3.js b/search/classes_3.js
index f89e52801..847cee33d 100644
--- a/search/classes_3.js
+++ b/search/classes_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['field_281',['field',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
+ ['field_283',['field',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
];
diff --git a/search/classes_4.js b/search/classes_4.js
index 171edb6d8..acb07f79d 100644
--- a/search/classes_4.js
+++ b/search/classes_4.js
@@ -1,21 +1,21 @@
var searchData=
[
- ['implementation_282',['implementation',['../classsimdjson_1_1implementation.html',1,'simdjson']]],
- ['implementation_5fsimdjson_5fresult_5fbase_283',['implementation_simdjson_result_base',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aarray_20_3e_284',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::array >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aarray_5fiterator_20_3e_285',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::array_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_20_3e_286',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_5freference_20_3e_287',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_5fstream_20_3e_288',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_stream >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3afield_20_3e_289',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::field >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3ajson_5fiterator_20_3e_290',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::json_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3ajson_5ftype_20_3e_291',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::json_type >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aobject_20_3e_292',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::object >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aobject_5fiterator_20_3e_293',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::object_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aparser_20_3e_294',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::parser >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3araw_5fjson_5fstring_20_3e_295',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3atoken_5fiterator_20_3e_296',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::token_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3avalue_20_3e_297',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3avalue_5fiterator_20_3e_298',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['iterator_299',['iterator',['../classsimdjson_1_1dom_1_1array_1_1iterator.html',1,'simdjson::dom::array::iterator'],['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html',1,'simdjson::dom::document_stream::iterator'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html',1,'simdjson::dom::object::iterator'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator']]]
+ ['implementation_284',['implementation',['../classsimdjson_1_1implementation.html',1,'simdjson']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_285',['implementation_simdjson_result_base',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aarray_20_3e_286',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::array >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aarray_5fiterator_20_3e_287',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::array_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_20_3e_288',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_5freference_20_3e_289',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_5fstream_20_3e_290',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_stream >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3afield_20_3e_291',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::field >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3ajson_5fiterator_20_3e_292',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::json_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3ajson_5ftype_20_3e_293',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::json_type >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aobject_20_3e_294',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::object >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aobject_5fiterator_20_3e_295',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::object_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aparser_20_3e_296',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::parser >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3araw_5fjson_5fstring_20_3e_297',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3atoken_5fiterator_20_3e_298',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::token_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3avalue_20_3e_299',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['implementation_5fsimdjson_5fresult_5fbase_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3avalue_5fiterator_20_3e_300',['implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value_iterator >',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['iterator_301',['iterator',['../classsimdjson_1_1dom_1_1array_1_1iterator.html',1,'simdjson::dom::array::iterator'],['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html',1,'simdjson::dom::document_stream::iterator'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html',1,'simdjson::dom::object::iterator'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator']]]
];
diff --git a/search/classes_5.js b/search/classes_5.js
index 3186079d2..a190fcc7a 100644
--- a/search/classes_5.js
+++ b/search/classes_5.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['key_5fvalue_5fpair_300',['key_value_pair',['../classsimdjson_1_1dom_1_1key__value__pair.html',1,'simdjson::dom']]]
+ ['key_5fvalue_5fpair_302',['key_value_pair',['../classsimdjson_1_1dom_1_1key__value__pair.html',1,'simdjson::dom']]]
];
diff --git a/search/classes_6.js b/search/classes_6.js
index 37ad4f5ed..4cee361f3 100644
--- a/search/classes_6.js
+++ b/search/classes_6.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['number_301',['number',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
+ ['number_303',['number',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
];
diff --git a/search/classes_7.js b/search/classes_7.js
index 723363dff..f8fc0947f 100644
--- a/search/classes_7.js
+++ b/search/classes_7.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['object_302',['object',['../classsimdjson_1_1dom_1_1object.html',1,'simdjson::dom::object'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object']]],
- ['object_5fiterator_303',['object_iterator',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
- ['open_5fcontainer_304',['open_container',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1open__container.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]]
+ ['object_304',['object',['../classsimdjson_1_1dom_1_1object.html',1,'simdjson::dom::object'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object']]],
+ ['object_5fiterator_305',['object_iterator',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
+ ['open_5fcontainer_306',['open_container',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1open__container.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]]
];
diff --git a/search/classes_8.js b/search/classes_8.js
index 562d89f85..160887f61 100644
--- a/search/classes_8.js
+++ b/search/classes_8.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['padded_5fstring_305',['padded_string',['../structsimdjson_1_1padded__string.html',1,'simdjson']]],
- ['padded_5fstring_5fview_306',['padded_string_view',['../classsimdjson_1_1padded__string__view.html',1,'simdjson']]],
- ['parser_307',['parser',['../classsimdjson_1_1dom_1_1parser.html',1,'simdjson::dom::parser'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser']]]
+ ['padded_5fstring_307',['padded_string',['../structsimdjson_1_1padded__string.html',1,'simdjson']]],
+ ['padded_5fstring_5fview_308',['padded_string_view',['../classsimdjson_1_1padded__string__view.html',1,'simdjson']]],
+ ['parser_309',['parser',['../classsimdjson_1_1dom_1_1parser.html',1,'simdjson::dom::parser'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser']]]
];
diff --git a/search/classes_9.js b/search/classes_9.js
index 8ed6227e9..958c7dcdd 100644
--- a/search/classes_9.js
+++ b/search/classes_9.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['raw_5fjson_5fstring_308',['raw_json_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
+ ['raw_5fjson_5fstring_310',['raw_json_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
];
diff --git a/search/classes_a.js b/search/classes_a.js
index 971215976..0a8f6af87 100644
--- a/search/classes_a.js
+++ b/search/classes_a.js
@@ -1,24 +1,24 @@
var searchData=
[
- ['simdjson_5ferror_309',['simdjson_error',['../structsimdjson_1_1simdjson__error.html',1,'simdjson']]],
- ['simdjson_5fresult_310',['simdjson_result',['../structsimdjson_1_1simdjson__result.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20dom_3a_3aarray_20_3e_311',['simdjson_result< dom::array >',['../structsimdjson_1_1simdjson__result_3_01dom_1_1array_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20dom_3a_3adocument_5fstream_20_3e_312',['simdjson_result< dom::document_stream >',['../structsimdjson_1_1simdjson__result_3_01dom_1_1document__stream_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20dom_3a_3aelement_20_3e_313',['simdjson_result< dom::element >',['../structsimdjson_1_1simdjson__result_3_01dom_1_1element_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20dom_3a_3aobject_20_3e_314',['simdjson_result< dom::object >',['../structsimdjson_1_1simdjson__result_3_01dom_1_1object_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aarray_20_3e_315',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::array >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aarray_5fiterator_20_3e_316',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::array_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_20_3e_317',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_5freference_20_3e_318',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_5fstream_20_3e_319',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_stream >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3afield_20_3e_320',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::field >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3ajson_5fiterator_20_3e_321',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::json_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1json__iterator_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3ajson_5ftype_20_3e_322',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::json_type >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1json__type_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aobject_20_3e_323',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::object >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aobject_5fiterator_20_3e_324',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::object_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aparser_20_3e_325',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::parser >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3araw_5fjson_5fstring_20_3e_326',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3atoken_5fiterator_20_3e_327',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::token_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1token__iterator_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3avalue_20_3e_328',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html',1,'simdjson']]],
- ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3avalue_5fiterator_20_3e_329',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value__iterator_01_4.html',1,'simdjson']]]
+ ['simdjson_5ferror_311',['simdjson_error',['../structsimdjson_1_1simdjson__error.html',1,'simdjson']]],
+ ['simdjson_5fresult_312',['simdjson_result',['../structsimdjson_1_1simdjson__result.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20dom_3a_3aarray_20_3e_313',['simdjson_result< dom::array >',['../structsimdjson_1_1simdjson__result_3_01dom_1_1array_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20dom_3a_3adocument_5fstream_20_3e_314',['simdjson_result< dom::document_stream >',['../structsimdjson_1_1simdjson__result_3_01dom_1_1document__stream_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20dom_3a_3aelement_20_3e_315',['simdjson_result< dom::element >',['../structsimdjson_1_1simdjson__result_3_01dom_1_1element_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20dom_3a_3aobject_20_3e_316',['simdjson_result< dom::object >',['../structsimdjson_1_1simdjson__result_3_01dom_1_1object_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aarray_20_3e_317',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::array >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aarray_5fiterator_20_3e_318',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::array_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_20_3e_319',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_5freference_20_3e_320',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3adocument_5fstream_20_3e_321',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_stream >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3afield_20_3e_322',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::field >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3ajson_5fiterator_20_3e_323',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::json_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1json__iterator_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3ajson_5ftype_20_3e_324',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::json_type >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1json__type_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aobject_20_3e_325',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::object >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aobject_5fiterator_20_3e_326',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::object_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3aparser_20_3e_327',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::parser >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3araw_5fjson_5fstring_20_3e_328',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3atoken_5fiterator_20_3e_329',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::token_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1token__iterator_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3avalue_20_3e_330',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html',1,'simdjson']]],
+ ['simdjson_5fresult_3c_20simdjson_5fimplementation_3a_3aondemand_3a_3avalue_5fiterator_20_3e_331',['simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value_iterator >',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value__iterator_01_4.html',1,'simdjson']]]
];
diff --git a/search/classes_b.js b/search/classes_b.js
index 24e64140c..9f78f931e 100644
--- a/search/classes_b.js
+++ b/search/classes_b.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['value_330',['value',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
+ ['value_332',['value',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
];
diff --git a/search/enums_0.js b/search/enums_0.js
index 76cc33015..e588c4c17 100644
--- a/search/enums_0.js
+++ b/search/enums_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['error_5fcode_514',['error_code',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9',1,'simdjson']]]
+ ['error_5fcode_518',['error_code',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9',1,'simdjson']]]
];
diff --git a/search/enums_1.js b/search/enums_1.js
index 663772f38..772d262bb 100644
--- a/search/enums_1.js
+++ b/search/enums_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['json_5ftype_515',['json_type',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
+ ['json_5ftype_519',['json_type',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
];
diff --git a/search/enums_2.js b/search/enums_2.js
index 29107b80b..f556d5e9a 100644
--- a/search/enums_2.js
+++ b/search/enums_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['number_5ftype_516',['number_type',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a5a5f83e81a35457b070256b78e16bf3f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
+ ['number_5ftype_520',['number_type',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a5a5f83e81a35457b070256b78e16bf3f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
];
diff --git a/search/enums_3.js b/search/enums_3.js
index 23a7c2a9a..94e511f96 100644
--- a/search/enums_3.js
+++ b/search/enums_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['stage1_5fmode_517',['stage1_mode',['../namespacesimdjson.html#ae6ec9f0ce23fc51d87116b64fdbeb811',1,'simdjson']]]
+ ['stage1_5fmode_521',['stage1_mode',['../namespacesimdjson.html#ae6ec9f0ce23fc51d87116b64fdbeb811',1,'simdjson']]]
];
diff --git a/search/enumvalues_0.js b/search/enumvalues_0.js
index e4838ccf3..5c1ae5a8b 100644
--- a/search/enumvalues_0.js
+++ b/search/enumvalues_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['array_518',['array',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330af1f713c9e000f5d3f280adbd124df4f5',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
+ ['array_522',['array',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330af1f713c9e000f5d3f280adbd124df4f5',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
];
diff --git a/search/enumvalues_1.js b/search/enumvalues_1.js
index 7bc672b08..d60595255 100644
--- a/search/enumvalues_1.js
+++ b/search/enumvalues_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['boolean_519',['boolean',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330a84e2c64f38f78ba3ea5c905ab5a2da27',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
+ ['boolean_523',['boolean',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330a84e2c64f38f78ba3ea5c905ab5a2da27',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
];
diff --git a/search/enumvalues_2.js b/search/enumvalues_2.js
index 10a23a66f..91b1f2d9e 100644
--- a/search/enumvalues_2.js
+++ b/search/enumvalues_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['capacity_520',['CAPACITY',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a2d50048bbe409023df4e88f6ffe3bc71',1,'simdjson']]]
+ ['capacity_524',['CAPACITY',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a2d50048bbe409023df4e88f6ffe3bc71',1,'simdjson']]]
];
diff --git a/search/enumvalues_3.js b/search/enumvalues_3.js
index bf9d75f60..198e716ec 100644
--- a/search/enumvalues_3.js
+++ b/search/enumvalues_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['depth_5ferror_521',['DEPTH_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a0c6b4af181d3d5f40a09182522c88681',1,'simdjson']]]
+ ['depth_5ferror_525',['DEPTH_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a0c6b4af181d3d5f40a09182522c88681',1,'simdjson']]]
];
diff --git a/search/enumvalues_4.js b/search/enumvalues_4.js
index c19a89733..b1977dc70 100644
--- a/search/enumvalues_4.js
+++ b/search/enumvalues_4.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['empty_522',['EMPTY',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a7aed571b420dcdfe59742e0df97b415a',1,'simdjson']]]
+ ['empty_526',['EMPTY',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a7aed571b420dcdfe59742e0df97b415a',1,'simdjson']]]
];
diff --git a/search/enumvalues_5.js b/search/enumvalues_5.js
index 76da5af03..8cfc2b4ec 100644
--- a/search/enumvalues_5.js
+++ b/search/enumvalues_5.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['f_5fatom_5ferror_523',['F_ATOM_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ae726a74b8a99e4bf802f3078436a2394',1,'simdjson']]]
+ ['f_5fatom_5ferror_527',['F_ATOM_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ae726a74b8a99e4bf802f3078436a2394',1,'simdjson']]]
];
diff --git a/search/enumvalues_6.js b/search/enumvalues_6.js
index e7384b4f5..a6d4b17f4 100644
--- a/search/enumvalues_6.js
+++ b/search/enumvalues_6.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['incomplete_5farray_5for_5fobject_524',['INCOMPLETE_ARRAY_OR_OBJECT',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ab8a4df583110f900741d0b3f229f349a',1,'simdjson']]],
- ['incorrect_5ftype_525',['INCORRECT_TYPE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a1de02af1d67e8350f612eee0dcf634b4',1,'simdjson']]],
- ['index_5fout_5fof_5fbounds_526',['INDEX_OUT_OF_BOUNDS',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a80bcf6820da38abe1a2e9abeaa0f0c49',1,'simdjson']]],
- ['insufficient_5fpadding_527',['INSUFFICIENT_PADDING',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aee3335b961f2d0f732e95b359c16a69a',1,'simdjson']]],
- ['invalid_5fjson_5fpointer_528',['INVALID_JSON_POINTER',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aeeaf930969566f76840224d64ee3a9a1',1,'simdjson']]],
- ['invalid_5furi_5ffragment_529',['INVALID_URI_FRAGMENT',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a7b0467451dc0cecb41d3ea46c4a0005b',1,'simdjson']]],
- ['io_5ferror_530',['IO_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9acaec8ffce84b1acf9e6833b0f930878e',1,'simdjson']]]
+ ['incomplete_5farray_5for_5fobject_528',['INCOMPLETE_ARRAY_OR_OBJECT',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ab8a4df583110f900741d0b3f229f349a',1,'simdjson']]],
+ ['incorrect_5ftype_529',['INCORRECT_TYPE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a1de02af1d67e8350f612eee0dcf634b4',1,'simdjson']]],
+ ['index_5fout_5fof_5fbounds_530',['INDEX_OUT_OF_BOUNDS',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a80bcf6820da38abe1a2e9abeaa0f0c49',1,'simdjson']]],
+ ['insufficient_5fpadding_531',['INSUFFICIENT_PADDING',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aee3335b961f2d0f732e95b359c16a69a',1,'simdjson']]],
+ ['invalid_5fjson_5fpointer_532',['INVALID_JSON_POINTER',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aeeaf930969566f76840224d64ee3a9a1',1,'simdjson']]],
+ ['invalid_5furi_5ffragment_533',['INVALID_URI_FRAGMENT',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a7b0467451dc0cecb41d3ea46c4a0005b',1,'simdjson']]],
+ ['io_5ferror_534',['IO_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9acaec8ffce84b1acf9e6833b0f930878e',1,'simdjson']]]
];
diff --git a/search/enumvalues_7.js b/search/enumvalues_7.js
index 6a61743d8..0916af77f 100644
--- a/search/enumvalues_7.js
+++ b/search/enumvalues_7.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['memalloc_531',['MEMALLOC',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aa0e71422c8ae80ebaa11d8d74d64737f',1,'simdjson']]]
+ ['memalloc_535',['MEMALLOC',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aa0e71422c8ae80ebaa11d8d74d64737f',1,'simdjson']]]
];
diff --git a/search/enumvalues_8.js b/search/enumvalues_8.js
index 2634c8da6..65f05738e 100644
--- a/search/enumvalues_8.js
+++ b/search/enumvalues_8.js
@@ -1,9 +1,9 @@
var searchData=
[
- ['n_5fatom_5ferror_532',['N_ATOM_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a4e161f7bd0b3ca10f41a220a75de8cde',1,'simdjson']]],
- ['no_5fsuch_5ffield_533',['NO_SUCH_FIELD',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a4a2c71f8eca438b3f0553a2811bdab9a',1,'simdjson']]],
- ['null_534',['null',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330a37a6259cc0c1dae299a7866489dff0bd',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
- ['number_535',['number',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330ab1bc248a7ff2b2e95569f56de68615df',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
- ['number_5ferror_536',['NUMBER_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9adfcabbbd1ddb0843a0f320e062866ae8',1,'simdjson']]],
- ['number_5fout_5fof_5frange_537',['NUMBER_OUT_OF_RANGE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a8c779dcc8fb73a4eb8891af3ef65eebb',1,'simdjson']]]
+ ['n_5fatom_5ferror_536',['N_ATOM_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a4e161f7bd0b3ca10f41a220a75de8cde',1,'simdjson']]],
+ ['no_5fsuch_5ffield_537',['NO_SUCH_FIELD',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a4a2c71f8eca438b3f0553a2811bdab9a',1,'simdjson']]],
+ ['null_538',['null',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330a37a6259cc0c1dae299a7866489dff0bd',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
+ ['number_539',['number',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330ab1bc248a7ff2b2e95569f56de68615df',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
+ ['number_5ferror_540',['NUMBER_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9adfcabbbd1ddb0843a0f320e062866ae8',1,'simdjson']]],
+ ['number_5fout_5fof_5frange_541',['NUMBER_OUT_OF_RANGE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a8c779dcc8fb73a4eb8891af3ef65eebb',1,'simdjson']]]
];
diff --git a/search/enumvalues_9.js b/search/enumvalues_9.js
index bd6c3ba9a..47f69c12c 100644
--- a/search/enumvalues_9.js
+++ b/search/enumvalues_9.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['object_538',['object',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330aa8cfde6331bd59eb2ac96f8911c4b666',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
- ['out_5fof_5fbounds_539',['OUT_OF_BOUNDS',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a3f94172e04ae52a978ea62157140b0de',1,'simdjson']]],
- ['out_5fof_5forder_5fiteration_540',['OUT_OF_ORDER_ITERATION',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a351bcafefbbc80a6dadc1ea6c27a35e6',1,'simdjson']]]
+ ['object_542',['object',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330aa8cfde6331bd59eb2ac96f8911c4b666',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
+ ['out_5fof_5fbounds_543',['OUT_OF_BOUNDS',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a3f94172e04ae52a978ea62157140b0de',1,'simdjson']]],
+ ['out_5fof_5forder_5fiteration_544',['OUT_OF_ORDER_ITERATION',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a351bcafefbbc80a6dadc1ea6c27a35e6',1,'simdjson']]]
];
diff --git a/search/enumvalues_a.js b/search/enumvalues_a.js
index 1729dcdcb..8b16e88e9 100644
--- a/search/enumvalues_a.js
+++ b/search/enumvalues_a.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['parser_5fin_5fuse_541',['PARSER_IN_USE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ae9067bb5cb6283141b1c66466005ac0d',1,'simdjson']]]
+ ['parser_5fin_5fuse_545',['PARSER_IN_USE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ae9067bb5cb6283141b1c66466005ac0d',1,'simdjson']]]
];
diff --git a/search/enumvalues_b.js b/search/enumvalues_b.js
index b18182cb6..4354d3a29 100644
--- a/search/enumvalues_b.js
+++ b/search/enumvalues_b.js
@@ -1,11 +1,11 @@
var searchData=
[
- ['scalar_5fdocument_5fas_5fvalue_542',['SCALAR_DOCUMENT_AS_VALUE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a00d7c038f551d9527ba8897f3cee907d',1,'simdjson']]],
- ['signed_5finteger_543',['signed_integer',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a5a5f83e81a35457b070256b78e16bf3faa14b6141855cd58c670ca6559c75c941',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
- ['simdjson_5fversion_5fmajor_544',['SIMDJSON_VERSION_MAJOR',['../namespacesimdjson.html#a44beb117a12abd0d8d18589dbc3dbe97ae36fce138c6f2f7a25e9ee06e7ed37ae',1,'simdjson']]],
- ['simdjson_5fversion_5fminor_545',['SIMDJSON_VERSION_MINOR',['../namespacesimdjson.html#a44beb117a12abd0d8d18589dbc3dbe97ab442d4c66052c2f30b72a0d6f8dc8814',1,'simdjson']]],
- ['simdjson_5fversion_5frevision_546',['SIMDJSON_VERSION_REVISION',['../namespacesimdjson.html#a44beb117a12abd0d8d18589dbc3dbe97a5537fa0bdb6b7345ea789c51f74b10ee',1,'simdjson']]],
- ['string_547',['string',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330ab45cffe084dd3d20d928bee85e7b0f21',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
- ['string_5ferror_548',['STRING_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a8ef9cfdd78dd92d2b304249917638d12',1,'simdjson']]],
- ['success_549',['SUCCESS',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aa4ffc800804829a88c5b52ac3c4c6681',1,'simdjson']]]
+ ['scalar_5fdocument_5fas_5fvalue_546',['SCALAR_DOCUMENT_AS_VALUE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a00d7c038f551d9527ba8897f3cee907d',1,'simdjson']]],
+ ['signed_5finteger_547',['signed_integer',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a5a5f83e81a35457b070256b78e16bf3faa14b6141855cd58c670ca6559c75c941',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
+ ['simdjson_5fversion_5fmajor_548',['SIMDJSON_VERSION_MAJOR',['../namespacesimdjson.html#a44beb117a12abd0d8d18589dbc3dbe97ae36fce138c6f2f7a25e9ee06e7ed37ae',1,'simdjson']]],
+ ['simdjson_5fversion_5fminor_549',['SIMDJSON_VERSION_MINOR',['../namespacesimdjson.html#a44beb117a12abd0d8d18589dbc3dbe97ab442d4c66052c2f30b72a0d6f8dc8814',1,'simdjson']]],
+ ['simdjson_5fversion_5frevision_550',['SIMDJSON_VERSION_REVISION',['../namespacesimdjson.html#a44beb117a12abd0d8d18589dbc3dbe97a5537fa0bdb6b7345ea789c51f74b10ee',1,'simdjson']]],
+ ['string_551',['string',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac915f0c06e5ab0363e09593bba651330ab45cffe084dd3d20d928bee85e7b0f21',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
+ ['string_5ferror_552',['STRING_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a8ef9cfdd78dd92d2b304249917638d12',1,'simdjson']]],
+ ['success_553',['SUCCESS',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aa4ffc800804829a88c5b52ac3c4c6681',1,'simdjson']]]
];
diff --git a/search/enumvalues_c.js b/search/enumvalues_c.js
index 3c99fa839..c6eae57b7 100644
--- a/search/enumvalues_c.js
+++ b/search/enumvalues_c.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['t_5fatom_5ferror_550',['T_ATOM_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ab6e8bfc242f7bea38657eaf61400077f',1,'simdjson']]],
- ['tape_5ferror_551',['TAPE_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a4005fbda56edc47e077e5cfd4e68cda9',1,'simdjson']]],
- ['trailing_5fcontent_552',['TRAILING_CONTENT',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ab70f5a6f0ac798d482e95a0fcc528676',1,'simdjson']]]
+ ['t_5fatom_5ferror_554',['T_ATOM_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ab6e8bfc242f7bea38657eaf61400077f',1,'simdjson']]],
+ ['tape_5ferror_555',['TAPE_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a4005fbda56edc47e077e5cfd4e68cda9',1,'simdjson']]],
+ ['trailing_5fcontent_556',['TRAILING_CONTENT',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ab70f5a6f0ac798d482e95a0fcc528676',1,'simdjson']]]
];
diff --git a/search/enumvalues_d.js b/search/enumvalues_d.js
index b245de3ee..326739fc8 100644
--- a/search/enumvalues_d.js
+++ b/search/enumvalues_d.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['unclosed_5fstring_553',['UNCLOSED_STRING',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a0f9ce97e85e7607e0f4d3811b818a013',1,'simdjson']]],
- ['unescaped_5fchars_554',['UNESCAPED_CHARS',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aca57917fc85c421aab3f2dd451519fa5',1,'simdjson']]],
- ['unexpected_5ferror_555',['UNEXPECTED_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9abdd3905c91a152a01637a2946066db6b',1,'simdjson']]],
- ['uninitialized_556',['UNINITIALIZED',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ac2aef8f0fc33187cc118c95fade925d2',1,'simdjson']]],
- ['unsigned_5finteger_557',['unsigned_integer',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a5a5f83e81a35457b070256b78e16bf3fa7383104b83254a99f5991d0ac77a6666',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
- ['unsupported_5farchitecture_558',['UNSUPPORTED_ARCHITECTURE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a4d768ac107473bceb91f8a0d1a824bc2',1,'simdjson']]],
- ['utf8_5ferror_559',['UTF8_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a398a5389d6e20c39e8880b0101b66f56',1,'simdjson']]]
+ ['unclosed_5fstring_557',['UNCLOSED_STRING',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a0f9ce97e85e7607e0f4d3811b818a013',1,'simdjson']]],
+ ['unescaped_5fchars_558',['UNESCAPED_CHARS',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9aca57917fc85c421aab3f2dd451519fa5',1,'simdjson']]],
+ ['unexpected_5ferror_559',['UNEXPECTED_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9abdd3905c91a152a01637a2946066db6b',1,'simdjson']]],
+ ['uninitialized_560',['UNINITIALIZED',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9ac2aef8f0fc33187cc118c95fade925d2',1,'simdjson']]],
+ ['unsigned_5finteger_561',['unsigned_integer',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a5a5f83e81a35457b070256b78e16bf3fa7383104b83254a99f5991d0ac77a6666',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]],
+ ['unsupported_5farchitecture_562',['UNSUPPORTED_ARCHITECTURE',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a4d768ac107473bceb91f8a0d1a824bc2',1,'simdjson']]],
+ ['utf8_5ferror_563',['UTF8_ERROR',['../namespacesimdjson.html#a7b735a3a50ba79e3f7f14df5f77d8da9a398a5389d6e20c39e8880b0101b66f56',1,'simdjson']]]
];
diff --git a/search/files_0.js b/search/files_0.js
index 71551e507..00a79c5b5 100644
--- a/search/files_0.js
+++ b/search/files_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['implementation_2dbase_2eh_333',['implementation-base.h',['../implementation-base_8h.html',1,'']]]
+ ['implementation_2dbase_2eh_335',['implementation-base.h',['../implementation-base_8h.html',1,'']]]
];
diff --git a/search/files_1.js b/search/files_1.js
index 6deb328a0..6b8acd8b9 100644
--- a/search/files_1.js
+++ b/search/files_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['simdjson_2eh_334',['simdjson.h',['../simdjson_8h.html',1,'']]]
+ ['simdjson_2eh_336',['simdjson.h',['../simdjson_8h.html',1,'']]]
];
diff --git a/search/functions_0.js b/search/functions_0.js
index 0b41a9a88..3f5c08f1c 100644
--- a/search/functions_0.js
+++ b/search/functions_0.js
@@ -1,14 +1,14 @@
var searchData=
[
- ['allocate_335',['allocate',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#ab6201f2eab41026e722a237d280b8fe1',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::allocate()'],['../classsimdjson_1_1dom_1_1parser.html#af8f49755a335bc269cb02d24badfcdf9',1,'simdjson::dom::parser::allocate()']]],
- ['append_5fdouble_336',['append_double',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#ae5b327f855878cba9b026059a1fc8a1b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]],
- ['append_5fs64_337',['append_s64',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#adb931b17ba9d4d41dd8111ad9288256c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]],
- ['append_5fu64_338',['append_u64',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#aa3481ec0d0726a732688b7fc64372049',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]],
- ['array_339',['array',['../classsimdjson_1_1dom_1_1array.html#a8b3d6eaec52a2b44965e53d874e367e9',1,'simdjson::dom::array::array()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a8cc89dada9999c2ecc319954cc3fc90a',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::array() noexcept=default'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a240a8118a5b6f76962425134cc284764',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::array(const value_iterator &iter) noexcept']]],
- ['array_5fiterator_340',['array_iterator',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#aa330b23feb572f33d77516431572b643',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator']]],
- ['as_5fdouble_341',['as_double',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#a41dc1bfd660e0b9c86cb5a5171fd7c02',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]],
- ['at_342',['at',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a1c97143f7637414d737d58daeec2eb84',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::at()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#acc369e813e7cf4a97564bb0d85f76db3',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::at()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a01c6bde0574654dc22ea219c3b3dbf51',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::at()'],['../classsimdjson_1_1dom_1_1element.html#aeb155c47ef7bebcad79e1b7449734030',1,'simdjson::dom::element::at(size_t index) const noexcept'],['../classsimdjson_1_1dom_1_1element.html#aa8b5798004a859bf922778226b8c1cce',1,'simdjson::dom::element::at(const std::string_view json_pointer) const noexcept'],['../classsimdjson_1_1dom_1_1array.html#a6a6373cc1542a7137b79978680a93d18',1,'simdjson::dom::array::at()']]],
- ['at_5fkey_343',['at_key',['../classsimdjson_1_1dom_1_1element.html#a686a21f39c755dcbf95116757d2193bd',1,'simdjson::dom::element::at_key()'],['../classsimdjson_1_1dom_1_1object.html#a4fb3e04e0ea591132da90341bf9ed819',1,'simdjson::dom::object::at_key()']]],
- ['at_5fkey_5fcase_5finsensitive_344',['at_key_case_insensitive',['../classsimdjson_1_1dom_1_1element.html#a5185447e6bf8949e7c5e9c22711e8764',1,'simdjson::dom::element::at_key_case_insensitive()'],['../classsimdjson_1_1dom_1_1object.html#ab075da9eb7678f6321cecf4cbd196039',1,'simdjson::dom::object::at_key_case_insensitive()']]],
- ['at_5fpointer_345',['at_pointer',['../classsimdjson_1_1dom_1_1array.html#a8141c7d98672bc3ab69fea7b63afcfb2',1,'simdjson::dom::array::at_pointer()'],['../classsimdjson_1_1dom_1_1element.html#a3777fed88f37555f2d090aeb604a117c',1,'simdjson::dom::element::at_pointer()'],['../classsimdjson_1_1dom_1_1object.html#ace84581be0fee46d5128c49710522aba',1,'simdjson::dom::object::at_pointer()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a73c2fc4db0c0b4083fafe706412d3b26',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::at_pointer()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a74484485f4a3d8dce5943b0cb60ac815',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::at_pointer()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ae3d80f8e7f31c319fe6ee09c0860df83',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::at_pointer()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aadd2f646a3231d407948bf5f3da46528',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::at_pointer()']]]
+ ['allocate_337',['allocate',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#ab6201f2eab41026e722a237d280b8fe1',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::allocate()'],['../classsimdjson_1_1dom_1_1parser.html#af8f49755a335bc269cb02d24badfcdf9',1,'simdjson::dom::parser::allocate()']]],
+ ['append_5fdouble_338',['append_double',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#ae5b327f855878cba9b026059a1fc8a1b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]],
+ ['append_5fs64_339',['append_s64',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#adb931b17ba9d4d41dd8111ad9288256c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]],
+ ['append_5fu64_340',['append_u64',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#aa3481ec0d0726a732688b7fc64372049',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]],
+ ['array_341',['array',['../classsimdjson_1_1dom_1_1array.html#a8b3d6eaec52a2b44965e53d874e367e9',1,'simdjson::dom::array::array()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a8cc89dada9999c2ecc319954cc3fc90a',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::array() noexcept=default'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a240a8118a5b6f76962425134cc284764',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::array(const value_iterator &iter) noexcept']]],
+ ['array_5fiterator_342',['array_iterator',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#aa330b23feb572f33d77516431572b643',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator']]],
+ ['as_5fdouble_343',['as_double',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#a41dc1bfd660e0b9c86cb5a5171fd7c02',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]],
+ ['at_344',['at',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a1c97143f7637414d737d58daeec2eb84',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::at()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#acc369e813e7cf4a97564bb0d85f76db3',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::at()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a01c6bde0574654dc22ea219c3b3dbf51',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::at()'],['../classsimdjson_1_1dom_1_1element.html#aeb155c47ef7bebcad79e1b7449734030',1,'simdjson::dom::element::at(size_t index) const noexcept'],['../classsimdjson_1_1dom_1_1element.html#aa8b5798004a859bf922778226b8c1cce',1,'simdjson::dom::element::at(const std::string_view json_pointer) const noexcept'],['../classsimdjson_1_1dom_1_1array.html#a6a6373cc1542a7137b79978680a93d18',1,'simdjson::dom::array::at()']]],
+ ['at_5fkey_345',['at_key',['../classsimdjson_1_1dom_1_1element.html#a686a21f39c755dcbf95116757d2193bd',1,'simdjson::dom::element::at_key()'],['../classsimdjson_1_1dom_1_1object.html#a4fb3e04e0ea591132da90341bf9ed819',1,'simdjson::dom::object::at_key()']]],
+ ['at_5fkey_5fcase_5finsensitive_346',['at_key_case_insensitive',['../classsimdjson_1_1dom_1_1element.html#a5185447e6bf8949e7c5e9c22711e8764',1,'simdjson::dom::element::at_key_case_insensitive()'],['../classsimdjson_1_1dom_1_1object.html#ab075da9eb7678f6321cecf4cbd196039',1,'simdjson::dom::object::at_key_case_insensitive()']]],
+ ['at_5fpointer_347',['at_pointer',['../classsimdjson_1_1dom_1_1array.html#a8141c7d98672bc3ab69fea7b63afcfb2',1,'simdjson::dom::array::at_pointer()'],['../classsimdjson_1_1dom_1_1element.html#a3777fed88f37555f2d090aeb604a117c',1,'simdjson::dom::element::at_pointer()'],['../classsimdjson_1_1dom_1_1object.html#ace84581be0fee46d5128c49710522aba',1,'simdjson::dom::object::at_pointer()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a73c2fc4db0c0b4083fafe706412d3b26',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::at_pointer()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a74484485f4a3d8dce5943b0cb60ac815',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::at_pointer()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ae3d80f8e7f31c319fe6ee09c0860df83',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::at_pointer()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aadd2f646a3231d407948bf5f3da46528',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::at_pointer()']]]
];
diff --git a/search/functions_1.js b/search/functions_1.js
index 17cbbb0b0..186f0afd7 100644
--- a/search/functions_1.js
+++ b/search/functions_1.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['begin_346',['begin',['../classsimdjson_1_1dom_1_1array.html#aebd2b7ca5e1d87476ea2cd4fc9239a74',1,'simdjson::dom::array::begin()'],['../classsimdjson_1_1dom_1_1document__stream.html#a9a51df3d81c9b7849bbbc8ae42096b76',1,'simdjson::dom::document_stream::begin()'],['../classsimdjson_1_1dom_1_1element.html#aa59ecf8e9ac7b1a9e977d2cd3f03aa7f',1,'simdjson::dom::element::begin()'],['../classsimdjson_1_1dom_1_1object.html#afe127a7e9ec8dab9ec76160525a68a83',1,'simdjson::dom::object::begin()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a8cb4bf0ca1890a4a3c86f69be40f17f2',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::begin()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a1a450826deb3ba982c9f0ec6208cb246',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::begin()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#ae88253d9f6cef0dfc0bd05c45cdfc06f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::begin()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a88d1cdc3124965d707754af4fcfae7f9',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::begin()']]],
- ['builtin_5fimplementation_347',['builtin_implementation',['../namespacesimdjson.html#af63210cc51d5c99ad84958daf9812e63',1,'simdjson']]]
+ ['begin_348',['begin',['../classsimdjson_1_1dom_1_1array.html#aebd2b7ca5e1d87476ea2cd4fc9239a74',1,'simdjson::dom::array::begin()'],['../classsimdjson_1_1dom_1_1document__stream.html#a9a51df3d81c9b7849bbbc8ae42096b76',1,'simdjson::dom::document_stream::begin()'],['../classsimdjson_1_1dom_1_1element.html#aa59ecf8e9ac7b1a9e977d2cd3f03aa7f',1,'simdjson::dom::element::begin()'],['../classsimdjson_1_1dom_1_1object.html#afe127a7e9ec8dab9ec76160525a68a83',1,'simdjson::dom::object::begin()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a8cb4bf0ca1890a4a3c86f69be40f17f2',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::begin()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a1a450826deb3ba982c9f0ec6208cb246',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::begin()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#ae88253d9f6cef0dfc0bd05c45cdfc06f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::begin()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a88d1cdc3124965d707754af4fcfae7f9',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::begin()']]],
+ ['builtin_5fimplementation_349',['builtin_implementation',['../namespacesimdjson.html#af63210cc51d5c99ad84958daf9812e63',1,'simdjson']]]
];
diff --git a/search/functions_10.js b/search/functions_10.js
index bccd112c4..b3006d286 100644
--- a/search/functions_10.js
+++ b/search/functions_10.js
@@ -1,22 +1,22 @@
var searchData=
[
- ['set_5fmax_5fcapacity_462',['set_max_capacity',['../classsimdjson_1_1dom_1_1parser.html#a6977b4586bc601070cf100e2973a4cbc',1,'simdjson::dom::parser']]],
- ['simdjson_5ferror_463',['simdjson_error',['../structsimdjson_1_1simdjson__error.html#af5355b65f85b897251b3665086075f39',1,'simdjson::simdjson_error']]],
- ['size_464',['size',['../classsimdjson_1_1dom_1_1array.html#a698f2f984d1a78a68962c06b2f047686',1,'simdjson::dom::array::size()'],['../classsimdjson_1_1dom_1_1object.html#a93ec5c36aae913f266f533b2e02bc873',1,'simdjson::dom::object::size()'],['../structsimdjson_1_1padded__string.html#a07d50795f042119ab848c37cb8911db4',1,'simdjson::padded_string::size()']]],
- ['size_5fin_5fbytes_465',['size_in_bytes',['../classsimdjson_1_1dom_1_1document__stream.html#a2a08525ae815167b73b6393a8999e46b',1,'simdjson::dom::document_stream::size_in_bytes()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#a43723c86c43ee3533a3278b5cd2fe2d0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::size_in_bytes()']]],
- ['skip_466',['skip',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ae75aa0d09a10682fd30dc4e8e25d0a73',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value']]],
- ['skip_5fdouble_467',['skip_double',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#ac6b75b1d1af73c9ef8958e573c367e1c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]],
- ['start_468',['start',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a760c4d01ad03f18e09a93387de5de60e',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::start()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a0126e4a8e02fa0a02481d3bdfd3965f7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::start()']]],
- ['start_5farray_469',['start_array',['../group__array.html#ga14e69f9c4949805695e30a576bd9c964',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['start_5fobject_470',['start_object',['../group__object.html#ga46e677764da46ebbe4b0e4dea6672a5f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['start_5for_5fresume_5fobject_471',['start_or_resume_object',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a821e11bc3b6b3f16fa7d6b15c77c17d3',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value']]],
- ['start_5froot_472',['start_root',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#aac11a5e300a49531b3600a019cd89304',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array']]],
- ['start_5froot_5farray_473',['start_root_array',['../group__array.html#ga334481c295286d926bb3bb912232e225',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['start_5froot_5fobject_474',['start_root_object',['../group__object.html#gab9563a58e164e9f5f75805cffb3582ec',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['started_475',['started',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#aca1c364caedac11edc78c64734013ce0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array']]],
- ['started_5farray_476',['started_array',['../group__array.html#ga136e508ce46622b86cc901490c807578',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['started_5fobject_477',['started_object',['../group__object.html#ga192424d19b12648eea73e3d073d5fcac',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['started_5froot_5farray_478',['started_root_array',['../group__array.html#gaa3428f6c87e63d8a2ba93a3816721066',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['started_5froot_5fobject_479',['started_root_object',['../group__object.html#gaa0c31077aeadb6fc627d4c5750e58ecb',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['supported_5fby_5fruntime_5fsystem_480',['supported_by_runtime_system',['../classsimdjson_1_1implementation.html#adf77c9bc0869eff8fd46e942c4532135',1,'simdjson::implementation']]]
+ ['set_5fmax_5fcapacity_465',['set_max_capacity',['../classsimdjson_1_1dom_1_1parser.html#a6977b4586bc601070cf100e2973a4cbc',1,'simdjson::dom::parser']]],
+ ['simdjson_5ferror_466',['simdjson_error',['../structsimdjson_1_1simdjson__error.html#af5355b65f85b897251b3665086075f39',1,'simdjson::simdjson_error']]],
+ ['size_467',['size',['../classsimdjson_1_1dom_1_1array.html#a698f2f984d1a78a68962c06b2f047686',1,'simdjson::dom::array::size()'],['../classsimdjson_1_1dom_1_1object.html#a93ec5c36aae913f266f533b2e02bc873',1,'simdjson::dom::object::size()'],['../structsimdjson_1_1padded__string.html#a07d50795f042119ab848c37cb8911db4',1,'simdjson::padded_string::size()']]],
+ ['size_5fin_5fbytes_468',['size_in_bytes',['../classsimdjson_1_1dom_1_1document__stream.html#a2a08525ae815167b73b6393a8999e46b',1,'simdjson::dom::document_stream::size_in_bytes()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#a43723c86c43ee3533a3278b5cd2fe2d0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::size_in_bytes()']]],
+ ['skip_469',['skip',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ae75aa0d09a10682fd30dc4e8e25d0a73',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value']]],
+ ['skip_5fdouble_470',['skip_double',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#ac6b75b1d1af73c9ef8958e573c367e1c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]],
+ ['start_471',['start',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a760c4d01ad03f18e09a93387de5de60e',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::start()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a0126e4a8e02fa0a02481d3bdfd3965f7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::start()']]],
+ ['start_5farray_472',['start_array',['../group__array.html#ga14e69f9c4949805695e30a576bd9c964',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['start_5fobject_473',['start_object',['../group__object.html#ga46e677764da46ebbe4b0e4dea6672a5f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['start_5for_5fresume_5fobject_474',['start_or_resume_object',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a821e11bc3b6b3f16fa7d6b15c77c17d3',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value']]],
+ ['start_5froot_475',['start_root',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#aac11a5e300a49531b3600a019cd89304',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array']]],
+ ['start_5froot_5farray_476',['start_root_array',['../group__array.html#ga334481c295286d926bb3bb912232e225',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['start_5froot_5fobject_477',['start_root_object',['../group__object.html#gab9563a58e164e9f5f75805cffb3582ec',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['started_478',['started',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#aca1c364caedac11edc78c64734013ce0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array']]],
+ ['started_5farray_479',['started_array',['../group__array.html#ga136e508ce46622b86cc901490c807578',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['started_5fobject_480',['started_object',['../group__object.html#ga192424d19b12648eea73e3d073d5fcac',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['started_5froot_5farray_481',['started_root_array',['../group__array.html#gaa3428f6c87e63d8a2ba93a3816721066',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['started_5froot_5fobject_482',['started_root_object',['../group__object.html#gaa0c31077aeadb6fc627d4c5750e58ecb',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['supported_5fby_5fruntime_5fsystem_483',['supported_by_runtime_system',['../classsimdjson_1_1implementation.html#adf77c9bc0869eff8fd46e942c4532135',1,'simdjson::implementation']]]
];
diff --git a/search/functions_11.js b/search/functions_11.js
index 5bb2cf25a..94d88afb3 100644
--- a/search/functions_11.js
+++ b/search/functions_11.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['take_5fvalue_481',['take_value',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#affadf1e1f762248d60950e333b739820',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::take_value()'],['../structsimdjson_1_1simdjson__result.html#a815368a9e09fa675d0b6672595f5ad19',1,'simdjson::simdjson_result::take_value()']]],
- ['tie_482',['tie',['../classsimdjson_1_1dom_1_1element.html#a5342161b8c52c78b2f5edac10e9d05ca',1,'simdjson::dom::element::tie()'],['../structsimdjson_1_1simdjson__result.html#a86dbcba063713c0e284dbde9fae17568',1,'simdjson::simdjson_result::tie()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#acd950d432e76a0bc1a7f3236cc7a1894',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::tie()']]],
- ['to_5fdebug_5fstring_483',['to_debug_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a9afdfb30ac2aacabce09a5c9d7fd375a',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
- ['to_5fjson_5fstring_484',['to_json_string',['../namespacesimdjson.html#a598dd79ec46726de8a6d409ba1bae034',1,'simdjson::to_json_string(SIMDJSON_IMPLEMENTATION::ondemand::array &x) noexcept'],['../namespacesimdjson.html#afc529e3bcacb5b3c747b525fb443771f',1,'simdjson::to_json_string(SIMDJSON_IMPLEMENTATION::ondemand::object &x) noexcept'],['../namespacesimdjson.html#a4c998fcc6bf2bca2196b45a5c3e1967a',1,'simdjson::to_json_string(SIMDJSON_IMPLEMENTATION::ondemand::value &x) noexcept'],['../namespacesimdjson.html#a2cda17221b852e5c398bad5bf350d270',1,'simdjson::to_json_string(SIMDJSON_IMPLEMENTATION::ondemand::document &x) noexcept']]],
- ['to_5fstring_485',['to_string',['../namespacesimdjson.html#ade4516933f53705eacfaed65ed14962d',1,'simdjson']]],
- ['truncated_5fbytes_486',['truncated_bytes',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#acd3fd372dfd30fcce1d6a103c6682d0e',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::truncated_bytes()'],['../classsimdjson_1_1dom_1_1document__stream.html#a6c2a07e08213dc9a51754940942f9e69',1,'simdjson::dom::document_stream::truncated_bytes()']]],
- ['type_487',['type',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#af3d0d03752d5e96d7ee5b83f29136b1b',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >::type()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ac39965b3006b8f19ed576ce99b7534c5',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::type()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a77bdebf4d2105efdd123cbf0a4906b1e',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::type()'],['../classsimdjson_1_1dom_1_1element.html#a19162bf6d94fb6c21bb2bf2e9b78ff0d',1,'simdjson::dom::element::type()']]]
+ ['take_5fvalue_484',['take_value',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#affadf1e1f762248d60950e333b739820',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::take_value()'],['../structsimdjson_1_1simdjson__result.html#a815368a9e09fa675d0b6672595f5ad19',1,'simdjson::simdjson_result::take_value()']]],
+ ['tie_485',['tie',['../classsimdjson_1_1dom_1_1element.html#a5342161b8c52c78b2f5edac10e9d05ca',1,'simdjson::dom::element::tie()'],['../structsimdjson_1_1simdjson__result.html#a86dbcba063713c0e284dbde9fae17568',1,'simdjson::simdjson_result::tie()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#acd950d432e76a0bc1a7f3236cc7a1894',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::tie()']]],
+ ['to_5fdebug_5fstring_486',['to_debug_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a9afdfb30ac2aacabce09a5c9d7fd375a',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
+ ['to_5fjson_5fstring_487',['to_json_string',['../namespacesimdjson.html#a598dd79ec46726de8a6d409ba1bae034',1,'simdjson::to_json_string(SIMDJSON_IMPLEMENTATION::ondemand::array &x) noexcept'],['../namespacesimdjson.html#afc529e3bcacb5b3c747b525fb443771f',1,'simdjson::to_json_string(SIMDJSON_IMPLEMENTATION::ondemand::object &x) noexcept'],['../namespacesimdjson.html#a4c998fcc6bf2bca2196b45a5c3e1967a',1,'simdjson::to_json_string(SIMDJSON_IMPLEMENTATION::ondemand::value &x) noexcept'],['../namespacesimdjson.html#a2cda17221b852e5c398bad5bf350d270',1,'simdjson::to_json_string(SIMDJSON_IMPLEMENTATION::ondemand::document &x) noexcept']]],
+ ['to_5fstring_488',['to_string',['../namespacesimdjson.html#ade4516933f53705eacfaed65ed14962d',1,'simdjson']]],
+ ['truncated_5fbytes_489',['truncated_bytes',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#acd3fd372dfd30fcce1d6a103c6682d0e',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::truncated_bytes()'],['../classsimdjson_1_1dom_1_1document__stream.html#a6c2a07e08213dc9a51754940942f9e69',1,'simdjson::dom::document_stream::truncated_bytes()']]],
+ ['type_490',['type',['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#af3d0d03752d5e96d7ee5b83f29136b1b',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >::type()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ac39965b3006b8f19ed576ce99b7534c5',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::type()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a77bdebf4d2105efdd123cbf0a4906b1e',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::type()'],['../classsimdjson_1_1dom_1_1element.html#a19162bf6d94fb6c21bb2bf2e9b78ff0d',1,'simdjson::dom::element::type()']]]
];
diff --git a/search/functions_12.js b/search/functions_12.js
index 67d3a2099..2197d63d9 100644
--- a/search/functions_12.js
+++ b/search/functions_12.js
@@ -1,6 +1,7 @@
var searchData=
[
- ['unescape_488',['unescape',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#ac69b3aef12e3490c9fbd0a580004e015',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser']]],
- ['unescaped_5fkey_489',['unescaped_key',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a49425afaaf0874b07c1f8e4ed1d86cf0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::field']]],
- ['unsafe_5fis_5fequal_490',['unsafe_is_equal',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#affa14023a66c65f906ee3e673443d943',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::unsafe_is_equal(size_t length, std::string_view target) const noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a11bccba8ede5e7dff56e2737fcb853c7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::unsafe_is_equal(std::string_view target) const noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a3d8f15d3b004acd695b6fff5ba94b515',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::unsafe_is_equal(const char *target) const noexcept']]]
+ ['unescape_491',['unescape',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a27714b0095b036a169cabebdc1031937',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser']]],
+ ['unescape_5fwobbly_492',['unescape_wobbly',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a926e145e3ffb2b1024646dd56bc938e4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser']]],
+ ['unescaped_5fkey_493',['unescaped_key',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a8e655ba1a0fd26809821f77aac355b7c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::field']]],
+ ['unsafe_5fis_5fequal_494',['unsafe_is_equal',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#affa14023a66c65f906ee3e673443d943',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::unsafe_is_equal(size_t length, std::string_view target) const noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a11bccba8ede5e7dff56e2737fcb853c7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::unsafe_is_equal(std::string_view target) const noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a3d8f15d3b004acd695b6fff5ba94b515',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::unsafe_is_equal(const char *target) const noexcept']]]
];
diff --git a/search/functions_13.js b/search/functions_13.js
index 3f36045a0..ced2ec671 100644
--- a/search/functions_13.js
+++ b/search/functions_13.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['validate_5futf8_491',['validate_utf8',['../namespacesimdjson.html#a04edabca6d128b8b31592e1e2e331ae0',1,'simdjson::validate_utf8(const std::string &s) noexcept'],['../namespacesimdjson.html#a28a847c4b31fc804bec2987b171dbd07',1,'simdjson::validate_utf8(const std::string_view sv) noexcept'],['../namespacesimdjson.html#a53546f3af0ed6840ffbeefcbefd305a1',1,'simdjson::validate_utf8(const char *buf, size_t len) noexcept'],['../classsimdjson_1_1implementation.html#aa3a7b818d56a54cca272191ec176f8f1',1,'simdjson::implementation::validate_utf8()']]],
- ['value_492',['value',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a7188b9843c2b3b3050c54b52d5b6886f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::value(const value_iterator &iter) noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ab96f6c19a1866863a110e8bcc93e0392',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::value() noexcept=default'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#ad5f688629f86f80dff49cab2270b1967',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::field::value()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a934c09eb8db55277d2d7190f1bbc1a84',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value() &&noexcept(false)'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a78c5842bded486846c816eb01ff439fc',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value() &noexcept(false)'],['../structsimdjson_1_1simdjson__result.html#ae52c2cc66e62e47b05f29e342ad5078a',1,'simdjson::simdjson_result::value() &&noexcept(false)'],['../structsimdjson_1_1simdjson__result.html#af7f6d5a5e979b60d5231449d53dcd9be',1,'simdjson::simdjson_result::value() &noexcept(false)'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a2049ae539dca6999cc33300d212a5014',1,'simdjson::dom::object::iterator::value()']]],
- ['value_5funsafe_493',['value_unsafe',['../structsimdjson_1_1simdjson__result.html#a3c25e74570144de48ef71ae490def85f',1,'simdjson::simdjson_result::value_unsafe() const &noexcept'],['../structsimdjson_1_1simdjson__result.html#a67ac8535dcf368fed604549a07e423e2',1,'simdjson::simdjson_result::value_unsafe() &&noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a92e1c9ffc7a854b4b33fa48fe2d95709',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value_unsafe() const &noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a5d412981bc3cee0f0bcf3bfb53ae83e1',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value_unsafe() &noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#ad06c8e25c44d091eb3757a65ccd9f57f',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value_unsafe() &&noexcept']]]
+ ['validate_5futf8_495',['validate_utf8',['../namespacesimdjson.html#a04edabca6d128b8b31592e1e2e331ae0',1,'simdjson::validate_utf8(const std::string &s) noexcept'],['../namespacesimdjson.html#a28a847c4b31fc804bec2987b171dbd07',1,'simdjson::validate_utf8(const std::string_view sv) noexcept'],['../namespacesimdjson.html#a53546f3af0ed6840ffbeefcbefd305a1',1,'simdjson::validate_utf8(const char *buf, size_t len) noexcept'],['../classsimdjson_1_1implementation.html#aa3a7b818d56a54cca272191ec176f8f1',1,'simdjson::implementation::validate_utf8()']]],
+ ['value_496',['value',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a7188b9843c2b3b3050c54b52d5b6886f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::value(const value_iterator &iter) noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ab96f6c19a1866863a110e8bcc93e0392',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::value() noexcept=default'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#ad5f688629f86f80dff49cab2270b1967',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::field::value()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a934c09eb8db55277d2d7190f1bbc1a84',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value() &&noexcept(false)'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a78c5842bded486846c816eb01ff439fc',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value() &noexcept(false)'],['../structsimdjson_1_1simdjson__result.html#ae52c2cc66e62e47b05f29e342ad5078a',1,'simdjson::simdjson_result::value() &&noexcept(false)'],['../structsimdjson_1_1simdjson__result.html#af7f6d5a5e979b60d5231449d53dcd9be',1,'simdjson::simdjson_result::value() &noexcept(false)'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a2049ae539dca6999cc33300d212a5014',1,'simdjson::dom::object::iterator::value()']]],
+ ['value_5funsafe_497',['value_unsafe',['../structsimdjson_1_1simdjson__result.html#a3c25e74570144de48ef71ae490def85f',1,'simdjson::simdjson_result::value_unsafe() const &noexcept'],['../structsimdjson_1_1simdjson__result.html#a67ac8535dcf368fed604549a07e423e2',1,'simdjson::simdjson_result::value_unsafe() &&noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a92e1c9ffc7a854b4b33fa48fe2d95709',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value_unsafe() const &noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a5d412981bc3cee0f0bcf3bfb53ae83e1',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value_unsafe() &noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#ad06c8e25c44d091eb3757a65ccd9f57f',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::value_unsafe() &&noexcept']]]
];
diff --git a/search/functions_14.js b/search/functions_14.js
index 39154d461..5fc8c976a 100644
--- a/search/functions_14.js
+++ b/search/functions_14.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['what_494',['what',['../structsimdjson_1_1simdjson__error.html#a73b15aae33a4eef105d0735e03d83a49',1,'simdjson::simdjson_error']]]
+ ['what_498',['what',['../structsimdjson_1_1simdjson__error.html#a73b15aae33a4eef105d0735e03d83a49',1,'simdjson::simdjson_error']]]
];
diff --git a/search/functions_15.js b/search/functions_15.js
index 1da5aa742..2ec1ff729 100644
--- a/search/functions_15.js
+++ b/search/functions_15.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['_7eparser_495',['~parser',['../classsimdjson_1_1dom_1_1parser.html#aeb48211f320af02b58dc3d0505059844',1,'simdjson::dom::parser::~parser()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a4a144d96ad06a2295137dd0e5b7dcc1d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::~parser()']]]
+ ['_7eparser_499',['~parser',['../classsimdjson_1_1dom_1_1parser.html#aeb48211f320af02b58dc3d0505059844',1,'simdjson::dom::parser::~parser()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a4a144d96ad06a2295137dd0e5b7dcc1d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::~parser()']]]
];
diff --git a/search/functions_2.js b/search/functions_2.js
index c07ccea2a..c5c1dae64 100644
--- a/search/functions_2.js
+++ b/search/functions_2.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['capacity_348',['capacity',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#aec2c883af898053ab8e5eca8e9e870ae',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::capacity()'],['../classsimdjson_1_1padded__string__view.html#a9d98e1984b893116d8bb7123d84d75b8',1,'simdjson::padded_string_view::capacity()'],['../classsimdjson_1_1dom_1_1parser.html#aedf495a6e090929be23473e8a29f2fe2',1,'simdjson::dom::parser::capacity()']]],
- ['child_349',['child',['../group__array.html#gaba7c4e5787c7295da3a0d73b0db1c890',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['consume_350',['consume',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a96aeba1fb4eac299260937b78e346ee8',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::consume()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ac16e0e51de3ce97fbd3fd0b1f947d552',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::consume()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#add102ee85423a75e22e4d7ca9a3eaacd',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::consume()']]],
- ['count_5felements_351',['count_elements',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a481e2b0b216d29038ddca3242a7047ad',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::count_elements()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ab408c2ea4be8874e3514b389c70a5667',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::count_elements()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a9f23e6ab13ad93c43e705ce7fe6134c9',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::count_elements()']]],
- ['count_5ffields_352',['count_fields',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a24fd6a8aa158b80d851e3a57c9fef642',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::count_fields()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#aef6872e07743217fe2e2abe790a21d4c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::count_fields()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a55f04607ee4e718294a572f9b6ad94cc',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::count_fields()']]],
- ['current_5fdepth_353',['current_depth',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a1919a4ca6418c94ed54f026fbbda6f1d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::current_depth()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8bcd64ae6b4d204c4b6b2a8420e0270c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::current_depth()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a3bfd36dafc82c212f165b434ab5378b3',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >::current_depth()']]],
- ['current_5flocation_354',['current_location',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a55603828cddcd2b6cfec1a487f0cd137',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::current_location()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a06258e49f2dbb910beeaf6814ff7e071',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::current_location()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a78b9e4e22a89050c9f911f1878165e88',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >::current_location()']]]
+ ['capacity_350',['capacity',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#aec2c883af898053ab8e5eca8e9e870ae',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::capacity()'],['../classsimdjson_1_1padded__string__view.html#a9d98e1984b893116d8bb7123d84d75b8',1,'simdjson::padded_string_view::capacity()'],['../classsimdjson_1_1dom_1_1parser.html#aedf495a6e090929be23473e8a29f2fe2',1,'simdjson::dom::parser::capacity()']]],
+ ['child_351',['child',['../group__array.html#gaba7c4e5787c7295da3a0d73b0db1c890',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['consume_352',['consume',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a96aeba1fb4eac299260937b78e346ee8',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::consume()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ac16e0e51de3ce97fbd3fd0b1f947d552',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::consume()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#add102ee85423a75e22e4d7ca9a3eaacd',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::consume()']]],
+ ['count_5felements_353',['count_elements',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a481e2b0b216d29038ddca3242a7047ad',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::count_elements()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ab408c2ea4be8874e3514b389c70a5667',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::count_elements()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a9f23e6ab13ad93c43e705ce7fe6134c9',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::count_elements()']]],
+ ['count_5ffields_354',['count_fields',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a24fd6a8aa158b80d851e3a57c9fef642',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::count_fields()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#aef6872e07743217fe2e2abe790a21d4c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::count_fields()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a55f04607ee4e718294a572f9b6ad94cc',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::count_fields()']]],
+ ['current_5fdepth_355',['current_depth',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a1919a4ca6418c94ed54f026fbbda6f1d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::current_depth()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8bcd64ae6b4d204c4b6b2a8420e0270c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::current_depth()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a3bfd36dafc82c212f165b434ab5378b3',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >::current_depth()']]],
+ ['current_5flocation_356',['current_location',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a55603828cddcd2b6cfec1a487f0cd137',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::current_location()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a06258e49f2dbb910beeaf6814ff7e071',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::current_location()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a78b9e4e22a89050c9f911f1878165e88',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >::current_location()']]]
];
diff --git a/search/functions_3.js b/search/functions_3.js
index 209569e78..63c55f26b 100644
--- a/search/functions_3.js
+++ b/search/functions_3.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['data_355',['data',['../structsimdjson_1_1padded__string.html#aadd3bb268cbba43012c5d17a8c1ab7ef',1,'simdjson::padded_string::data() const noexcept'],['../structsimdjson_1_1padded__string.html#aa833ecdbe40c220c5baf7a29c472c972',1,'simdjson::padded_string::data() noexcept']]],
- ['description_356',['description',['../classsimdjson_1_1implementation.html#a4f41daefefc573e20fccd591b158e063',1,'simdjson::implementation']]],
- ['document_357',['document',['../classsimdjson_1_1dom_1_1document.html#a6947c9d79453071ca73d06e398bcdd2a',1,'simdjson::dom::document::document() noexcept=default'],['../classsimdjson_1_1dom_1_1document.html#af34f108b46f82428bfe4ea33869358f0',1,'simdjson::dom::document::document(document &&other) noexcept=default'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a54cd729a715a09bc9e706b7640233427',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::document()']]],
- ['document_5fstream_358',['document_stream',['../classsimdjson_1_1dom_1_1document__stream.html#ae6ee894790448145e11a456f12253364',1,'simdjson::dom::document_stream::document_stream() noexcept'],['../classsimdjson_1_1dom_1_1document__stream.html#a9d6bb44a7d8f818c401d65fb80f6a523',1,'simdjson::dom::document_stream::document_stream(document_stream &&other) noexcept=default'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#af12dc14d4d16b9f4f4602c738678cb0c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::document_stream() noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#a0ac2a6ad0393eb4330b440c8c09290f2',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::document_stream(document_stream &&other) noexcept=default']]]
+ ['data_357',['data',['../structsimdjson_1_1padded__string.html#aadd3bb268cbba43012c5d17a8c1ab7ef',1,'simdjson::padded_string::data() const noexcept'],['../structsimdjson_1_1padded__string.html#aa833ecdbe40c220c5baf7a29c472c972',1,'simdjson::padded_string::data() noexcept']]],
+ ['description_358',['description',['../classsimdjson_1_1implementation.html#a4f41daefefc573e20fccd591b158e063',1,'simdjson::implementation']]],
+ ['document_359',['document',['../classsimdjson_1_1dom_1_1document.html#a6947c9d79453071ca73d06e398bcdd2a',1,'simdjson::dom::document::document() noexcept=default'],['../classsimdjson_1_1dom_1_1document.html#af34f108b46f82428bfe4ea33869358f0',1,'simdjson::dom::document::document(document &&other) noexcept=default'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a54cd729a715a09bc9e706b7640233427',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::document()']]],
+ ['document_5fstream_360',['document_stream',['../classsimdjson_1_1dom_1_1document__stream.html#ae6ee894790448145e11a456f12253364',1,'simdjson::dom::document_stream::document_stream() noexcept'],['../classsimdjson_1_1dom_1_1document__stream.html#a9d6bb44a7d8f818c401d65fb80f6a523',1,'simdjson::dom::document_stream::document_stream(document_stream &&other) noexcept=default'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#af12dc14d4d16b9f4f4602c738678cb0c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::document_stream() noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#a0ac2a6ad0393eb4330b440c8c09290f2',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::document_stream(document_stream &&other) noexcept=default']]]
];
diff --git a/search/functions_4.js b/search/functions_4.js
index 526e0199e..4790969c9 100644
--- a/search/functions_4.js
+++ b/search/functions_4.js
@@ -1,7 +1,7 @@
var searchData=
[
- ['element_359',['element',['../classsimdjson_1_1dom_1_1element.html#a9dbf81ad662ad32168025e8e08686935',1,'simdjson::dom::element']]],
- ['end_360',['end',['../classsimdjson_1_1dom_1_1array.html#a378b3312cdf6f8fe04725b617b8cfcb9',1,'simdjson::dom::array::end()'],['../classsimdjson_1_1dom_1_1document__stream.html#adec1e168e4188bf9c90ee87adbd72850',1,'simdjson::dom::document_stream::end()'],['../classsimdjson_1_1dom_1_1element.html#a846a790e93c9bad6c40641239bd77b28',1,'simdjson::dom::element::end()'],['../classsimdjson_1_1dom_1_1object.html#a79cf291477bcaa1bf2328411b411587d',1,'simdjson::dom::object::end()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#ae482e8f5fa3233babbcb9ccc29db5a15',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::end()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a7a79c0e85c9d40b53f0d4daeeb24111a',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::end()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#a0a0d40ed80767c01232a6aacb6258b2b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::end()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a6ed00f1588087b2d0de926c4599366d6',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::end()']]],
- ['error_361',['error',['../structsimdjson_1_1simdjson__error.html#aa8143615e5f6f02474f6ab165682ab6e',1,'simdjson::simdjson_error::error()'],['../structsimdjson_1_1simdjson__result.html#a23470fcc7f01262019e96d3f3010b4a1',1,'simdjson::simdjson_result::error()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a20a01e401b72125b9b1acef9cfb5b9ea',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::error()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a4111757108422ffaf647024319205d5c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::error()']]],
- ['error_5fmessage_362',['error_message',['../namespacesimdjson.html#a65b00a7a7a9c8fafe9eb3b9b413a36fa',1,'simdjson::error_message(error_code error) noexcept'],['../namespacesimdjson.html#a56e8e2fa6798b9e0da80bc51ae4a5f29',1,'simdjson::error_message(int error) noexcept']]]
+ ['element_361',['element',['../classsimdjson_1_1dom_1_1element.html#a9dbf81ad662ad32168025e8e08686935',1,'simdjson::dom::element']]],
+ ['end_362',['end',['../classsimdjson_1_1dom_1_1array.html#a378b3312cdf6f8fe04725b617b8cfcb9',1,'simdjson::dom::array::end()'],['../classsimdjson_1_1dom_1_1document__stream.html#adec1e168e4188bf9c90ee87adbd72850',1,'simdjson::dom::document_stream::end()'],['../classsimdjson_1_1dom_1_1element.html#a846a790e93c9bad6c40641239bd77b28',1,'simdjson::dom::element::end()'],['../classsimdjson_1_1dom_1_1object.html#a79cf291477bcaa1bf2328411b411587d',1,'simdjson::dom::object::end()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#ae482e8f5fa3233babbcb9ccc29db5a15',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::end()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a7a79c0e85c9d40b53f0d4daeeb24111a',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::end()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#a0a0d40ed80767c01232a6aacb6258b2b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::end()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a6ed00f1588087b2d0de926c4599366d6',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::end()']]],
+ ['error_363',['error',['../structsimdjson_1_1simdjson__error.html#aa8143615e5f6f02474f6ab165682ab6e',1,'simdjson::simdjson_error::error()'],['../structsimdjson_1_1simdjson__result.html#a23470fcc7f01262019e96d3f3010b4a1',1,'simdjson::simdjson_result::error()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a20a01e401b72125b9b1acef9cfb5b9ea',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::error()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a4111757108422ffaf647024319205d5c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::error()']]],
+ ['error_5fmessage_364',['error_message',['../namespacesimdjson.html#a65b00a7a7a9c8fafe9eb3b9b413a36fa',1,'simdjson::error_message(error_code error) noexcept'],['../namespacesimdjson.html#a56e8e2fa6798b9e0da80bc51ae4a5f29',1,'simdjson::error_message(int error) noexcept']]]
];
diff --git a/search/functions_5.js b/search/functions_5.js
index e359dae92..b6582e9c8 100644
--- a/search/functions_5.js
+++ b/search/functions_5.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['field_363',['field',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a9415aecf3526ad6081be495c9be61b43',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::field']]],
- ['field_5fkey_364',['field_key',['../group__object.html#ga9fd0d39ec786f26b7ea86f9bc8380bdd',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['field_5fvalue_365',['field_value',['../group__object.html#gaaaf58bcf25e6d30a3469848d36c65a05',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['find_5ffield_366',['find_field',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ab919032e611f7f4a1e8cc9eb47ad4dea',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::find_field()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#aa25020165cc5a191026a243a10da6558',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::find_field()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a1588a173b15a20cacf77a24d07032d83',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::find_field()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a4ff908713e1eb6d6294706a235be8101',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >::find_field()'],['../group__object.html#gacefcaf06811426a241ed97a6948a94ee',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator::find_field(const std::string_view key) noexcept']]],
- ['find_5ffield_5fraw_367',['find_field_raw',['../group__object.html#gab66bdaf2c97d2cbd2a94a5a3e67ffabc',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['find_5ffield_5funordered_368',['find_field_unordered',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aa89d66d993d0bffcbb85e303ad3950c2',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::find_field_unordered()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#a55d8bd31e2f5e6b10986af2f48a544fc',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::find_field_unordered()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#acb1514c00a87027c5eb3c81171a3b874',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::find_field_unordered()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a423064962ffe48495948c98afb0e556c',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >::find_field_unordered()']]],
- ['find_5ffield_5funordered_5fraw_369',['find_field_unordered_raw',['../group__object.html#ga678e53c38ebaf2323550e7f29e253df9',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]]
+ ['field_365',['field',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a9415aecf3526ad6081be495c9be61b43',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::field']]],
+ ['field_5fkey_366',['field_key',['../group__object.html#ga9fd0d39ec786f26b7ea86f9bc8380bdd',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['field_5fvalue_367',['field_value',['../group__object.html#gaaaf58bcf25e6d30a3469848d36c65a05',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['find_5ffield_368',['find_field',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ab919032e611f7f4a1e8cc9eb47ad4dea',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::find_field()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#aa25020165cc5a191026a243a10da6558',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::find_field()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a1588a173b15a20cacf77a24d07032d83',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::find_field()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a4ff908713e1eb6d6294706a235be8101',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >::find_field()'],['../group__object.html#gacefcaf06811426a241ed97a6948a94ee',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator::find_field(const std::string_view key) noexcept']]],
+ ['find_5ffield_5fraw_369',['find_field_raw',['../group__object.html#gab66bdaf2c97d2cbd2a94a5a3e67ffabc',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['find_5ffield_5funordered_370',['find_field_unordered',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aa89d66d993d0bffcbb85e303ad3950c2',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::find_field_unordered()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#a55d8bd31e2f5e6b10986af2f48a544fc',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::find_field_unordered()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#acb1514c00a87027c5eb3c81171a3b874',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::find_field_unordered()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a423064962ffe48495948c98afb0e556c',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >::find_field_unordered()']]],
+ ['find_5ffield_5funordered_5fraw_371',['find_field_unordered_raw',['../group__object.html#ga678e53c38ebaf2323550e7f29e253df9',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]]
];
diff --git a/search/functions_6.js b/search/functions_6.js
index 310a2fa5e..c9dc902b7 100644
--- a/search/functions_6.js
+++ b/search/functions_6.js
@@ -1,22 +1,23 @@
var searchData=
[
- ['get_370',['get',['../classsimdjson_1_1dom_1_1element.html#a3474c8fc1b1cb06625a50dcb9a2c5269',1,'simdjson::dom::element::get()'],['../structsimdjson_1_1simdjson__result.html#ab0fafc6d63a14891788a9edaedff4b05',1,'simdjson::simdjson_result::get()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a96c905c44f3c53cb6cdb23b760d323b8',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::get()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a7fe39fb73b6a4d9b1c97742dc2ae7b98',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get() &noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#af0af8707b5623e17c3bc9a329b7c4fa3',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get(T &out) &noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8d50c7c494ab9acc4a644cc77dd058f9',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get() noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a40af3c6af7d18241c1c4017df8557d86',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get(T &out) noexcept'],['../classsimdjson_1_1dom_1_1element.html#a47663724b3a6bad8666ccd24cd598bd2',1,'simdjson::dom::element::get()']]],
- ['get_5factive_5fimplementation_371',['get_active_implementation',['../namespacesimdjson.html#abd8b8fd009878125822fca9a2624f6a6',1,'simdjson']]],
- ['get_5farray_372',['get_array',['../classsimdjson_1_1dom_1_1element.html#a87c75accdc0b35e06f3d554561ce8cd3',1,'simdjson::dom::element::get_array()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aea545f106413a9bc01cd19e6630a580d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_array()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a2fdcc51cac791c3a2f4c970764bc0155',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_array()']]],
- ['get_5favailable_5fimplementations_373',['get_available_implementations',['../namespacesimdjson.html#a7e4483a8ae684fdb5b2f1e7d4a8acc69',1,'simdjson']]],
- ['get_5fbool_374',['get_bool',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aa0e07db099e651d3e5279872683cb7dd',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_bool()'],['../classsimdjson_1_1dom_1_1element.html#a548e0fc369eb455ea477e20fb0793627',1,'simdjson::dom::element::get_bool()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a41eaac87582a465b4c9f9834701a837d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_bool()']]],
- ['get_5fc_5fstr_375',['get_c_str',['../classsimdjson_1_1dom_1_1element.html#a29c21d70352c9b8af7144fd4f38baaa6',1,'simdjson::dom::element']]],
- ['get_5fdouble_376',['get_double',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a9a5ebeb4a79fa1d997f9f3478370a57e',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_double()'],['../classsimdjson_1_1dom_1_1element.html#a3e74a8a6ef8318e2de805359126c6d7b',1,'simdjson::dom::element::get_double()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a9909be358c78a64bc9ab7e11e3f2a47b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_double()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#ab261642a30f5e26b0769ce701cd5b9f8',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::get_double()']]],
- ['get_5fdouble_5fin_5fstring_377',['get_double_in_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ac8b8d7d4bc7958363b7f0d380b248a4f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_double_in_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a85e4b5250e316cc602b1b05bd097f771',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_double_in_string()']]],
- ['get_5fint64_378',['get_int64',['../classsimdjson_1_1dom_1_1element.html#aa954cda836a4748ec9937291a9250604',1,'simdjson::dom::element::get_int64()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ab7e4b28c0d9637cf1b04554d99c0e3b3',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_int64()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a6abc08fb48868bdc5104c885c46ced82',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_int64()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#a92b12b32ee177c2a818618d0595d2584',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::get_int64()']]],
- ['get_5fint64_5fin_5fstring_379',['get_int64_in_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aac4a4837e66c8f1243722ab04ce45436',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_int64_in_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a547e99f2f430ca39bf4060d090f45ff7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_int64_in_string() noexcept']]],
- ['get_5fnumber_380',['get_number',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aa89c4aceb7e052a1f7ff7e4058b651f1',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_number()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a2b04a9cd8c4ff9b591dc3f2db95c69cf',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_number() noexcept']]],
- ['get_5fnumber_5ftype_381',['get_number_type',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#abb3a7cc6f2391d26f27a28c16ca38c9c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_number_type()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#a8c8d29d831635c958e87de0cc2dab8b4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::get_number_type()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a2f46079741d1ba316de32bb9765c5082',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_number_type()']]],
- ['get_5fobject_382',['get_object',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a4620d364a637031ef38661f9fb215ebc',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_object()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a3bde0795cb309f3e51b8388fbafc1fe4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_object()'],['../classsimdjson_1_1dom_1_1element.html#ab4c2e35dc44664eb04038ad35efc64f9',1,'simdjson::dom::element::get_object()']]],
- ['get_5fraw_5fjson_5fstring_383',['get_raw_json_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#afa3370b930da937911cf61ec9b047c56',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_raw_json_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aca8b183c4e674a5b4ade8f6d2780f815',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_raw_json_string()']]],
- ['get_5fstring_384',['get_string',['../classsimdjson_1_1dom_1_1element.html#ae83652b5016ce4d4ff71f8f9bc05913e',1,'simdjson::dom::element::get_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#addfd2bc654d13906456ce44168d2ab68',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8e96b60b036694be5ef43fb564ab8d1b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_string()']]],
- ['get_5fstring_5flength_385',['get_string_length',['../classsimdjson_1_1dom_1_1element.html#a9d92145af64401654c20d2885dd4051d',1,'simdjson::dom::element']]],
- ['get_5fuint64_386',['get_uint64',['../classsimdjson_1_1dom_1_1element.html#a9e5a750a066f17d5a9a31a24980e0b1d',1,'simdjson::dom::element::get_uint64()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a4d221850d045f1e7ada4dfaaee0e145c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_uint64()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a47b30548f71aca4317bdc4c6955cd719',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_reference::get_uint64()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#aff5939efdcb41c9d2b9a1997816f093f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::get_uint64()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#adaa7bb2c9b3988476f3317ddda27e22d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_uint64()']]],
- ['get_5fuint64_5fin_5fstring_387',['get_uint64_in_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5cb63d14a99509d751f4be45063fec95',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_uint64_in_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8bc2eb9eeeb7e2e0b82c23ed4d254933',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_uint64_in_string()']]],
- ['get_5fvalue_388',['get_value',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ab89eda435b4a68be578fcb5c3da73980',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]]
+ ['get_372',['get',['../classsimdjson_1_1dom_1_1element.html#a3474c8fc1b1cb06625a50dcb9a2c5269',1,'simdjson::dom::element::get()'],['../structsimdjson_1_1simdjson__result.html#ab0fafc6d63a14891788a9edaedff4b05',1,'simdjson::simdjson_result::get()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a96c905c44f3c53cb6cdb23b760d323b8',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::get()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a7fe39fb73b6a4d9b1c97742dc2ae7b98',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get() &noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#af0af8707b5623e17c3bc9a329b7c4fa3',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get(T &out) &noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8d50c7c494ab9acc4a644cc77dd058f9',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get() noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a40af3c6af7d18241c1c4017df8557d86',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get(T &out) noexcept'],['../classsimdjson_1_1dom_1_1element.html#a47663724b3a6bad8666ccd24cd598bd2',1,'simdjson::dom::element::get()']]],
+ ['get_5factive_5fimplementation_373',['get_active_implementation',['../namespacesimdjson.html#abd8b8fd009878125822fca9a2624f6a6',1,'simdjson']]],
+ ['get_5farray_374',['get_array',['../classsimdjson_1_1dom_1_1element.html#a87c75accdc0b35e06f3d554561ce8cd3',1,'simdjson::dom::element::get_array()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aea545f106413a9bc01cd19e6630a580d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_array()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a2fdcc51cac791c3a2f4c970764bc0155',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_array()']]],
+ ['get_5favailable_5fimplementations_375',['get_available_implementations',['../namespacesimdjson.html#a7e4483a8ae684fdb5b2f1e7d4a8acc69',1,'simdjson']]],
+ ['get_5fbool_376',['get_bool',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aa0e07db099e651d3e5279872683cb7dd',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_bool()'],['../classsimdjson_1_1dom_1_1element.html#a548e0fc369eb455ea477e20fb0793627',1,'simdjson::dom::element::get_bool()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a41eaac87582a465b4c9f9834701a837d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_bool()']]],
+ ['get_5fc_5fstr_377',['get_c_str',['../classsimdjson_1_1dom_1_1element.html#a29c21d70352c9b8af7144fd4f38baaa6',1,'simdjson::dom::element']]],
+ ['get_5fdouble_378',['get_double',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a9a5ebeb4a79fa1d997f9f3478370a57e',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_double()'],['../classsimdjson_1_1dom_1_1element.html#a3e74a8a6ef8318e2de805359126c6d7b',1,'simdjson::dom::element::get_double()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a9909be358c78a64bc9ab7e11e3f2a47b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_double()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#ab261642a30f5e26b0769ce701cd5b9f8',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::get_double()']]],
+ ['get_5fdouble_5fin_5fstring_379',['get_double_in_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ac8b8d7d4bc7958363b7f0d380b248a4f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_double_in_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a85e4b5250e316cc602b1b05bd097f771',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_double_in_string()']]],
+ ['get_5fint64_380',['get_int64',['../classsimdjson_1_1dom_1_1element.html#aa954cda836a4748ec9937291a9250604',1,'simdjson::dom::element::get_int64()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ab7e4b28c0d9637cf1b04554d99c0e3b3',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_int64()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a6abc08fb48868bdc5104c885c46ced82',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_int64()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#a92b12b32ee177c2a818618d0595d2584',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::get_int64()']]],
+ ['get_5fint64_5fin_5fstring_381',['get_int64_in_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aac4a4837e66c8f1243722ab04ce45436',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_int64_in_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a547e99f2f430ca39bf4060d090f45ff7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_int64_in_string() noexcept']]],
+ ['get_5fnumber_382',['get_number',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aa89c4aceb7e052a1f7ff7e4058b651f1',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_number()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a2b04a9cd8c4ff9b591dc3f2db95c69cf',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_number() noexcept']]],
+ ['get_5fnumber_5ftype_383',['get_number_type',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#abb3a7cc6f2391d26f27a28c16ca38c9c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_number_type()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#a8c8d29d831635c958e87de0cc2dab8b4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::get_number_type()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a2f46079741d1ba316de32bb9765c5082',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_number_type()']]],
+ ['get_5fobject_384',['get_object',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a4620d364a637031ef38661f9fb215ebc',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_object()'],['../classsimdjson_1_1dom_1_1element.html#ab4c2e35dc44664eb04038ad35efc64f9',1,'simdjson::dom::element::get_object()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a3bde0795cb309f3e51b8388fbafc1fe4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_object() noexcept']]],
+ ['get_5fraw_5fjson_5fstring_385',['get_raw_json_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#aca8b183c4e674a5b4ade8f6d2780f815',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_raw_json_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#afa3370b930da937911cf61ec9b047c56',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_raw_json_string() noexcept']]],
+ ['get_5fstring_386',['get_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a2ae4c160def21463b0ab214a36c0a78e',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a9d574e04d5dfde0bf99dea4926232fe4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_string()'],['../classsimdjson_1_1dom_1_1element.html#ae83652b5016ce4d4ff71f8f9bc05913e',1,'simdjson::dom::element::get_string() const noexcept']]],
+ ['get_5fstring_5flength_387',['get_string_length',['../classsimdjson_1_1dom_1_1element.html#a9d92145af64401654c20d2885dd4051d',1,'simdjson::dom::element']]],
+ ['get_5fuint64_388',['get_uint64',['../classsimdjson_1_1dom_1_1element.html#a9e5a750a066f17d5a9a31a24980e0b1d',1,'simdjson::dom::element::get_uint64()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a4d221850d045f1e7ada4dfaaee0e145c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_uint64()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference.html#a47b30548f71aca4317bdc4c6955cd719',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_reference::get_uint64()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#aff5939efdcb41c9d2b9a1997816f093f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::get_uint64()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#adaa7bb2c9b3988476f3317ddda27e22d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_uint64()']]],
+ ['get_5fuint64_5fin_5fstring_389',['get_uint64_in_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5cb63d14a99509d751f4be45063fec95',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_uint64_in_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8bc2eb9eeeb7e2e0b82c23ed4d254933',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_uint64_in_string()']]],
+ ['get_5fvalue_390',['get_value',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ab89eda435b4a68be578fcb5c3da73980',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
+ ['get_5fwobbly_5fstring_391',['get_wobbly_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ae1db0154ef901ed1e8fb581bb9df6899',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::get_wobbly_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#ab7bb6749f40bec70c8a1a31edad53c1d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::get_wobbly_string()']]]
];
diff --git a/search/functions_7.js b/search/functions_7.js
index ecf403011..d71889a44 100644
--- a/search/functions_7.js
+++ b/search/functions_7.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['has_5fnext_5felement_389',['has_next_element',['../group__array.html#ga31b0a8ce8734db9413cce31c4d9c8c8d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
- ['has_5fnext_5ffield_390',['has_next_field',['../group__object.html#ga7956fe38cd8ecfbc8f709aa6f65c92b4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]]
+ ['has_5fnext_5felement_392',['has_next_element',['../group__array.html#ga31b0a8ce8734db9413cce31c4d9c8c8d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]],
+ ['has_5fnext_5ffield_393',['has_next_field',['../group__object.html#ga7956fe38cd8ecfbc8f709aa6f65c92b4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value_iterator']]]
];
diff --git a/search/functions_8.js b/search/functions_8.js
index b152b135e..556e9be98 100644
--- a/search/functions_8.js
+++ b/search/functions_8.js
@@ -1,25 +1,25 @@
var searchData=
[
- ['implementation_5fsimdjson_5fresult_5fbase_391',['implementation_simdjson_result_base',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a4f59b204f1eddcdc2b36e6df0639a516',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::implementation_simdjson_result_base(error_code error) noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a108dd35fd49314820106a21afa0fb2ea',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::implementation_simdjson_result_base() noexcept=default'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a44ff65b6194c7c1cb74180b43e438619',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::implementation_simdjson_result_base(T &&value, error_code error) noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#af8a436d40886a295f618311d3849d7e5',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::implementation_simdjson_result_base(T &&value) noexcept']]],
- ['is_392',['is',['../classsimdjson_1_1dom_1_1element.html#a4c77063d766c7db197f8674407b504d7',1,'simdjson::dom::element']]],
- ['is_5falive_393',['is_alive',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a3170300bc331577a1435bb238cf3faff',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
- ['is_5farray_394',['is_array',['../classsimdjson_1_1dom_1_1element.html#afaaac6e2f58128a01a25b0a5f5abb856',1,'simdjson::dom::element']]],
- ['is_5fbool_395',['is_bool',['../classsimdjson_1_1dom_1_1element.html#afde562c5aae1b85a03ab6d4b040e7d13',1,'simdjson::dom::element']]],
- ['is_5fdouble_396',['is_double',['../classsimdjson_1_1dom_1_1element.html#a0d11f69ba87f55960be6f655e4e99aba',1,'simdjson::dom::element::is_double()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#a48f9e54ebd40e1c060be0a4b1d4ff823',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::is_double()']]],
- ['is_5fempty_397',['is_empty',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a371cf8909f04019606063e8538fd7109',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::is_empty()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ad210f9115679a625ada433add55eff51',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::is_empty()']]],
- ['is_5fequal_398',['is_equal',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a0ddac0ab1c69022610d8051b989b5c95',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::is_equal(std::string_view target) const noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#aa3165ea813c4c15fb9cb282e67abe6af',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::is_equal(const char *target) const noexcept']]],
- ['is_5ffree_5ffrom_5funescaped_5fquote_399',['is_free_from_unescaped_quote',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a671923a53cc070f65029698afeb9be7f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string']]],
- ['is_5fint64_400',['is_int64',['../classsimdjson_1_1dom_1_1element.html#adadf66ec37675d5f3fac9816a8aacba2',1,'simdjson::dom::element::is_int64()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#a38d6b4b4e91f30c8def71997d23454c2',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::is_int64()']]],
- ['is_5finteger_401',['is_integer',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a5ab2c9c7d29a7a6c09f78930b0100836',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::is_integer()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#af47e11e9925fd5d3d8a43cf0f7773992',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::is_integer() noexcept']]],
- ['is_5fnegative_402',['is_negative',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5083f65b71d7540ea785ec2b52604267',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::is_negative()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a2701c283de019e56624e930e936e0df0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::is_negative()']]],
- ['is_5fnull_403',['is_null',['../classsimdjson_1_1dom_1_1element.html#ae38f84f4272ae3c32b32dd6d5007ffb9',1,'simdjson::dom::element::is_null()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5ed59f01a0d4ad253f0e1c1f995ed0a7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::is_null()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a04f1c591d93d834377a9cb916c90e09b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::is_null()']]],
- ['is_5fnumber_404',['is_number',['../classsimdjson_1_1dom_1_1element.html#a1e3f78b3bee5ec3f33cc4b03dcc87981',1,'simdjson::dom::element']]],
- ['is_5fobject_405',['is_object',['../classsimdjson_1_1dom_1_1element.html#a08c7dcebf9e96fe5e4dd6df2959c0024',1,'simdjson::dom::element']]],
- ['is_5fscalar_406',['is_scalar',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8c2618e57ec26501dd93ff8fd5cc2191',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::is_scalar()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ac2ea8f4340d02d9062f81419da47500b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::is_scalar()']]],
- ['is_5fstreaming_407',['is_streaming',['../namespacesimdjson.html#a6f306690d6d088d80b0cc2717040b2d0',1,'simdjson']]],
- ['is_5fstring_408',['is_string',['../classsimdjson_1_1dom_1_1element.html#a65bd96042cc0f19dc3e0635937edded4',1,'simdjson::dom::element']]],
- ['is_5fuint64_409',['is_uint64',['../classsimdjson_1_1dom_1_1element.html#ac5017726a573f59c3494b92bb66a3beb',1,'simdjson::dom::element::is_uint64()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#af0e89976b80a7a7dedaf8c1a7cfd64a2',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::is_uint64()']]],
- ['iterate_410',['iterate',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a0da712132ca4180a84907f2ca4ffbc5b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser']]],
- ['iterate_5fmany_411',['iterate_many',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a8f2dee06242abddb70eb7c07b50cef0b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser']]],
- ['iterator_412',['iterator',['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html#a6c3a5002801ab80b1c59422d7f3400d3',1,'simdjson::dom::document_stream::iterator::iterator()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a3b0ac5e3e64e53167a011afdd0b77345',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::iterator()']]]
+ ['implementation_5fsimdjson_5fresult_5fbase_394',['implementation_simdjson_result_base',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a4f59b204f1eddcdc2b36e6df0639a516',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::implementation_simdjson_result_base(error_code error) noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a108dd35fd49314820106a21afa0fb2ea',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::implementation_simdjson_result_base() noexcept=default'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a44ff65b6194c7c1cb74180b43e438619',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::implementation_simdjson_result_base(T &&value, error_code error) noexcept'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#af8a436d40886a295f618311d3849d7e5',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::implementation_simdjson_result_base(T &&value) noexcept']]],
+ ['is_395',['is',['../classsimdjson_1_1dom_1_1element.html#a4c77063d766c7db197f8674407b504d7',1,'simdjson::dom::element']]],
+ ['is_5falive_396',['is_alive',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a3170300bc331577a1435bb238cf3faff',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
+ ['is_5farray_397',['is_array',['../classsimdjson_1_1dom_1_1element.html#afaaac6e2f58128a01a25b0a5f5abb856',1,'simdjson::dom::element']]],
+ ['is_5fbool_398',['is_bool',['../classsimdjson_1_1dom_1_1element.html#afde562c5aae1b85a03ab6d4b040e7d13',1,'simdjson::dom::element']]],
+ ['is_5fdouble_399',['is_double',['../classsimdjson_1_1dom_1_1element.html#a0d11f69ba87f55960be6f655e4e99aba',1,'simdjson::dom::element::is_double()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#a48f9e54ebd40e1c060be0a4b1d4ff823',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::is_double()']]],
+ ['is_5fempty_400',['is_empty',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a371cf8909f04019606063e8538fd7109',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::is_empty()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ad210f9115679a625ada433add55eff51',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::is_empty()']]],
+ ['is_5fequal_401',['is_equal',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a0ddac0ab1c69022610d8051b989b5c95',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::is_equal(std::string_view target) const noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#aa3165ea813c4c15fb9cb282e67abe6af',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::is_equal(const char *target) const noexcept']]],
+ ['is_5ffree_5ffrom_5funescaped_5fquote_402',['is_free_from_unescaped_quote',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a671923a53cc070f65029698afeb9be7f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string']]],
+ ['is_5fint64_403',['is_int64',['../classsimdjson_1_1dom_1_1element.html#adadf66ec37675d5f3fac9816a8aacba2',1,'simdjson::dom::element::is_int64()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#a38d6b4b4e91f30c8def71997d23454c2',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::is_int64()']]],
+ ['is_5finteger_404',['is_integer',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a5ab2c9c7d29a7a6c09f78930b0100836',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::is_integer()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#af47e11e9925fd5d3d8a43cf0f7773992',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::is_integer() noexcept']]],
+ ['is_5fnegative_405',['is_negative',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5083f65b71d7540ea785ec2b52604267',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::is_negative()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a2701c283de019e56624e930e936e0df0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::is_negative()']]],
+ ['is_5fnull_406',['is_null',['../classsimdjson_1_1dom_1_1element.html#ae38f84f4272ae3c32b32dd6d5007ffb9',1,'simdjson::dom::element::is_null()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5ed59f01a0d4ad253f0e1c1f995ed0a7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::is_null()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a04f1c591d93d834377a9cb916c90e09b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::is_null()']]],
+ ['is_5fnumber_407',['is_number',['../classsimdjson_1_1dom_1_1element.html#a1e3f78b3bee5ec3f33cc4b03dcc87981',1,'simdjson::dom::element']]],
+ ['is_5fobject_408',['is_object',['../classsimdjson_1_1dom_1_1element.html#a08c7dcebf9e96fe5e4dd6df2959c0024',1,'simdjson::dom::element']]],
+ ['is_5fscalar_409',['is_scalar',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8c2618e57ec26501dd93ff8fd5cc2191',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::is_scalar()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ac2ea8f4340d02d9062f81419da47500b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::is_scalar()']]],
+ ['is_5fstreaming_410',['is_streaming',['../namespacesimdjson.html#a6f306690d6d088d80b0cc2717040b2d0',1,'simdjson']]],
+ ['is_5fstring_411',['is_string',['../classsimdjson_1_1dom_1_1element.html#a65bd96042cc0f19dc3e0635937edded4',1,'simdjson::dom::element']]],
+ ['is_5fuint64_412',['is_uint64',['../classsimdjson_1_1dom_1_1element.html#ac5017726a573f59c3494b92bb66a3beb',1,'simdjson::dom::element::is_uint64()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#af0e89976b80a7a7dedaf8c1a7cfd64a2',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number::is_uint64()']]],
+ ['iterate_413',['iterate',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a0da712132ca4180a84907f2ca4ffbc5b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser']]],
+ ['iterate_5fmany_414',['iterate_many',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a8f2dee06242abddb70eb7c07b50cef0b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser']]],
+ ['iterator_415',['iterator',['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html#a6c3a5002801ab80b1c59422d7f3400d3',1,'simdjson::dom::document_stream::iterator::iterator()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a3b0ac5e3e64e53167a011afdd0b77345',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::iterator()']]]
];
diff --git a/search/functions_9.js b/search/functions_9.js
index 02e3615d4..d2e03cb93 100644
--- a/search/functions_9.js
+++ b/search/functions_9.js
@@ -1,8 +1,8 @@
var searchData=
[
- ['key_413',['key',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a951609ca7a164b499ff19adbe2de7983',1,'simdjson::dom::object::iterator::key()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a4f49d8e89feb3ca69cf85ce2aea80c0f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::field::key()']]],
- ['key_5fc_5fstr_414',['key_c_str',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a54a99dcf9c422d5c24f3c570b6d9b6e4',1,'simdjson::dom::object::iterator']]],
- ['key_5fequals_415',['key_equals',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a4807eeb1ed5f596b587d0b61dfb550e7',1,'simdjson::dom::object::iterator']]],
- ['key_5fequals_5fcase_5finsensitive_416',['key_equals_case_insensitive',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a6d335de77b8c5b731566e48f6cacd95d',1,'simdjson::dom::object::iterator']]],
- ['key_5flength_417',['key_length',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a5ad1b60fd5df56d9fdb8bce1e08de88f',1,'simdjson::dom::object::iterator']]]
+ ['key_416',['key',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a951609ca7a164b499ff19adbe2de7983',1,'simdjson::dom::object::iterator::key()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field.html#a4f49d8e89feb3ca69cf85ce2aea80c0f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::field::key()']]],
+ ['key_5fc_5fstr_417',['key_c_str',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a54a99dcf9c422d5c24f3c570b6d9b6e4',1,'simdjson::dom::object::iterator']]],
+ ['key_5fequals_418',['key_equals',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a4807eeb1ed5f596b587d0b61dfb550e7',1,'simdjson::dom::object::iterator']]],
+ ['key_5fequals_5fcase_5finsensitive_419',['key_equals_case_insensitive',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a6d335de77b8c5b731566e48f6cacd95d',1,'simdjson::dom::object::iterator']]],
+ ['key_5flength_420',['key_length',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a5ad1b60fd5df56d9fdb8bce1e08de88f',1,'simdjson::dom::object::iterator']]]
];
diff --git a/search/functions_a.js b/search/functions_a.js
index 441c3dee6..c5d644423 100644
--- a/search/functions_a.js
+++ b/search/functions_a.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['length_418',['length',['../structsimdjson_1_1padded__string.html#a863fded7b347718299190ad3f501d38c',1,'simdjson::padded_string']]],
- ['load_419',['load',['../classsimdjson_1_1dom_1_1parser.html#ab3e5bbb1974a1932aead90ad63883a23',1,'simdjson::dom::parser::load()'],['../structsimdjson_1_1padded__string.html#aaf017ffe731c738da5eb31c63b987d3a',1,'simdjson::padded_string::load()']]],
- ['load_5fmany_420',['load_many',['../classsimdjson_1_1dom_1_1parser.html#a5300851ba21d0a0273a11510fd1c378a',1,'simdjson::dom::parser']]]
+ ['length_421',['length',['../structsimdjson_1_1padded__string.html#a863fded7b347718299190ad3f501d38c',1,'simdjson::padded_string']]],
+ ['load_422',['load',['../classsimdjson_1_1dom_1_1parser.html#ab3e5bbb1974a1932aead90ad63883a23',1,'simdjson::dom::parser::load()'],['../structsimdjson_1_1padded__string.html#aaf017ffe731c738da5eb31c63b987d3a',1,'simdjson::padded_string::load()']]],
+ ['load_5fmany_423',['load_many',['../classsimdjson_1_1dom_1_1parser.html#a5300851ba21d0a0273a11510fd1c378a',1,'simdjson::dom::parser']]]
];
diff --git a/search/functions_b.js b/search/functions_b.js
index 117ad4c28..29c6b5c5e 100644
--- a/search/functions_b.js
+++ b/search/functions_b.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['max_5fcapacity_421',['max_capacity',['../classsimdjson_1_1dom_1_1parser.html#a8bfde4193783adef9c5f12dfc4da3bc0',1,'simdjson::dom::parser::max_capacity()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a006ad62e81d1ffa0fa898b586095208b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::max_capacity()']]],
- ['max_5fdepth_422',['max_depth',['../classsimdjson_1_1dom_1_1parser.html#a209d15b8f87ad69f5fbaccdd5b6b5441',1,'simdjson::dom::parser::max_depth()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a9dd8dfaa40f0faec56e31f976e4c2c94',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::max_depth()']]],
- ['minify_423',['minify',['../namespacesimdjson.html#aeb4ef5cab43d52da3fdd99cb689aff2c',1,'simdjson::minify(T x)'],['../namespacesimdjson.html#a94bb4244756d764cf0ed7de180ae6520',1,'simdjson::minify(const char *buf, size_t len, char *dst, size_t &dst_len) noexcept']]]
+ ['max_5fcapacity_424',['max_capacity',['../classsimdjson_1_1dom_1_1parser.html#a8bfde4193783adef9c5f12dfc4da3bc0',1,'simdjson::dom::parser::max_capacity()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a006ad62e81d1ffa0fa898b586095208b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::max_capacity()']]],
+ ['max_5fdepth_425',['max_depth',['../classsimdjson_1_1dom_1_1parser.html#a209d15b8f87ad69f5fbaccdd5b6b5441',1,'simdjson::dom::parser::max_depth()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a9dd8dfaa40f0faec56e31f976e4c2c94',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::max_depth()']]],
+ ['minify_426',['minify',['../namespacesimdjson.html#aeb4ef5cab43d52da3fdd99cb689aff2c',1,'simdjson::minify(T x)'],['../namespacesimdjson.html#a94bb4244756d764cf0ed7de180ae6520',1,'simdjson::minify(const char *buf, size_t len, char *dst, size_t &dst_len) noexcept']]]
];
diff --git a/search/functions_c.js b/search/functions_c.js
index e4b4a35bd..9fa22ff2c 100644
--- a/search/functions_c.js
+++ b/search/functions_c.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['name_424',['name',['../classsimdjson_1_1implementation.html#a404c32ec6187ac0fb5b2ec6b5aea4abd',1,'simdjson::implementation']]],
- ['number_5fof_5fslots_425',['number_of_slots',['../classsimdjson_1_1dom_1_1array.html#a26e66312190e016c22093292974490ff',1,'simdjson::dom::array']]]
+ ['name_427',['name',['../classsimdjson_1_1implementation.html#a404c32ec6187ac0fb5b2ec6b5aea4abd',1,'simdjson::implementation']]],
+ ['number_5fof_5fslots_428',['number_of_slots',['../classsimdjson_1_1dom_1_1array.html#a26e66312190e016c22093292974490ff',1,'simdjson::dom::array']]]
];
diff --git a/search/functions_d.js b/search/functions_d.js
index 9eab4e6a1..7c0437389 100644
--- a/search/functions_d.js
+++ b/search/functions_d.js
@@ -1,24 +1,24 @@
var searchData=
[
- ['object_426',['object',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#a034b27d7ff75832a574c2069af267111',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::object()'],['../classsimdjson_1_1dom_1_1object.html#ae2e1a8cbaab9d352495d1dc993407be3',1,'simdjson::dom::object::object()']]],
- ['object_5fiterator_427',['object_iterator',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator.html#a9fce67dabeb5dcccd16fa531febec666',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object_iterator']]],
- ['operator_20array_428',['operator array',['../classsimdjson_1_1dom_1_1element.html#a71d6bfa627dd66e202f8b402f91a44ac',1,'simdjson::dom::element::operator array()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a08307c0a5552cf8cb06613ed1de48eac',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator array()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a93756146a65e835b9358cc652dc53396',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator array()']]],
- ['operator_20bool_429',['operator bool',['../classsimdjson_1_1dom_1_1element.html#ab036e52a73d5bd046e1f2650a31dab30',1,'simdjson::dom::element::operator bool()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a7df7ba140c9d6398fef2c6963da82230',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator bool()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#af7b51d9048d388235f3936c8fa30a2f7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator bool()']]],
- ['operator_20const_20char_20_2a_430',['operator const char *',['../classsimdjson_1_1dom_1_1element.html#a8f9569b40dd2b23aab9fbf2229749589',1,'simdjson::dom::element']]],
- ['operator_20double_431',['operator double',['../classsimdjson_1_1dom_1_1element.html#a743b5f1ef4202d8fb8fb317e612385f3',1,'simdjson::dom::element::operator double()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ae052e098bfbfde398845060a8d4f572f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator double()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a53f99cedf58e62c1382a4d5a585e05a0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator double()']]],
- ['operator_20int64_5ft_432',['operator int64_t',['../classsimdjson_1_1dom_1_1element.html#afb98fdfcb6ddf19071cd2300613218d3',1,'simdjson::dom::element::operator int64_t()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5d50aa0d396fc49855d3c0c571b07a25',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator int64_t()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a30f182e71d3c13d2656ba5983862be57',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator int64_t()']]],
- ['operator_20object_433',['operator object',['../classsimdjson_1_1dom_1_1element.html#a23f4d8c38309b0184e658d8a9697a177',1,'simdjson::dom::element::operator object()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a89519c599fd938a6a750262111fc5757',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator object()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a6cd27fe6dc9062b5380db757d49c3f7b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator object()']]],
- ['operator_20padded_5fstring_5fview_434',['operator padded_string_view',['../structsimdjson_1_1padded__string.html#a0e5b8e8917478af4e82e023c2efa40e9',1,'simdjson::padded_string']]],
- ['operator_20raw_5fjson_5fstring_435',['operator raw_json_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a78411bf36298e3468ac83f3562b75d83',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator raw_json_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a85d69a32b4b95f353abe6214ecc98619',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator raw_json_string()']]],
- ['operator_20t_26_26_436',['operator T&&',['../structsimdjson_1_1simdjson__result.html#afcce23c64894ec135fe8c2d255d2121b',1,'simdjson::simdjson_result::operator T&&()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a11133790f4386ea4d11567a3a0806096',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::operator T&&()']]],
- ['operator_20uint64_5ft_437',['operator uint64_t',['../classsimdjson_1_1dom_1_1element.html#ae3c0226046e29cfb0e868c5251a87e53',1,'simdjson::dom::element::operator uint64_t()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a847db7139319155ef5fa2d4af7063163',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator uint64_t()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#afb7be23d4f1006d5eae234d8c8c8d286',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator uint64_t()']]],
- ['operator_20value_438',['operator value',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ad12185e1993ebcad73eb5ce82f5de8f7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
- ['operator_21_3d_439',['operator!=',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a05396b8e8322363b523b3bf9730a31f1',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::operator!=()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#abbca17b48bd6c2b045b659076f1f64ce',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator::operator!=()'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a1da5ce328cc2609432be961736c6e810',1,'simdjson::dom::object::iterator::operator!=()'],['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html#a56c69d73c7e424e008a28771661ab218',1,'simdjson::dom::document_stream::iterator::operator!=()'],['../classsimdjson_1_1dom_1_1array_1_1iterator.html#a2680a46eeece638bc352bcf6a169bcf6',1,'simdjson::dom::array::iterator::operator!=(const iterator &other) const noexcept']]],
- ['operator_2a_440',['operator*',['../classsimdjson_1_1dom_1_1array_1_1iterator.html#a90254656d4e7a8826246d1f931647eff',1,'simdjson::dom::array::iterator::operator*()'],['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html#a09b193fe348fa8a267b96edd96f7515e',1,'simdjson::dom::document_stream::iterator::operator*()'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a688f6c7f451602bb3385a93252c0828a',1,'simdjson::dom::object::iterator::operator*()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#a1577fb5a95f92a4a1aaa8eee6440d572',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator::operator*()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a5fe3ce985cc1921d5917667d6b25841b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::operator*()']]],
- ['operator_2b_2b_441',['operator++',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a83b3c467632c017400f95ff05d2367b3',1,'simdjson::dom::object::iterator::operator++()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a03e0c8d93b86a18b10370d51b99548ef',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::operator++()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#a55e0ae33e5e5835c841fd082edab5937',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator::operator++()'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#aa26738ad08b7de3be4621a75863118ab',1,'simdjson::dom::object::iterator::operator++()'],['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html#a7b05ed75aa2b2a6d3a17204b9863956a',1,'simdjson::dom::document_stream::iterator::operator++()'],['../classsimdjson_1_1dom_1_1array_1_1iterator.html#a6ec91111a2bcc9e378d30b47b613fac5',1,'simdjson::dom::array::iterator::operator++() noexcept'],['../classsimdjson_1_1dom_1_1array_1_1iterator.html#a46454681bd5e3a938c04eb89210e7966',1,'simdjson::dom::array::iterator::operator++(int) noexcept']]],
- ['operator_3c_3c_442',['operator<<',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ab10943c6107de5337f376a6939f817af',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<()'],['../namespacesimdjson.html#a43514fe76c3095e45f30a050a9551d27',1,'simdjson::operator<<()'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a386f80798c223c5fdbfc4dd9066a6b99',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson_result< json_type > &type) noexcept(false)'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac3a4f6af474f2b5f6d749f7452bb5477',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value x)'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a24f9bbfe8b5a3017b4dd4b72dbccec4d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array value)'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a6f753d5e1bc479321c51b54392a96a65',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document &value)'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ae52a82c2f754a47eb9dac12223b3311d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object value)'],['../namespacesimdjson.html#a61a74357c3e9313ad84c5f1243fdf581',1,'simdjson::operator<<(std::ostream &out, simdjson_result< padded_string_view > &s) noexcept(false)'],['../namespacesimdjson.html#a39bbbf605c0068e4a65c2d8885727fc9',1,'simdjson::operator<<(std::ostream &out, simdjson_result< padded_string > &s) noexcept(false)'],['../namespacesimdjson.html#a537445bb236ae76d2b5559b1851b7108',1,'simdjson::operator<<(std::ostream &out, const padded_string &s)']]],
- ['operator_3d_443',['operator=',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#ac3c10596a0934f4f5375b986a35f90db',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::operator=()'],['../structsimdjson_1_1padded__string.html#aa43b3a8e0df4edcf960f04441dd9b930',1,'simdjson::padded_string::operator=()'],['../classsimdjson_1_1dom_1_1parser.html#af5b61dda345cef1feba7c4529dfe0259',1,'simdjson::dom::parser::operator=()'],['../classsimdjson_1_1dom_1_1document__stream.html#a162d002972b41bbb7d8e4021341e15ba',1,'simdjson::dom::document_stream::operator=()'],['../classsimdjson_1_1dom_1_1document.html#a336814aa587d9ca605e1548b22b2b80c',1,'simdjson::dom::document::operator=()']]],
- ['operator_3d_3d_444',['operator==',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#aab771b17058b0c93bdd0a8679c2c4d84',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator==()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#a20cd55e63cf5bdc1561f771b4db1ac1b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator::operator==()']]],
- ['operator_5b_5d_445',['operator[]',['../classsimdjson_1_1dom_1_1object.html#a2691ceae488be203aac2d5ef5b67347f',1,'simdjson::dom::object::operator[](const char *key) const noexcept'],['../classsimdjson_1_1dom_1_1object.html#acc66a2f2eb74fbe359d4064531764f50',1,'simdjson::dom::object::operator[](std::string_view key) const noexcept'],['../classsimdjson_1_1dom_1_1element.html#a367d22eeabc1881a8eb18bae2f2ba3b8',1,'simdjson::dom::element::operator[](const char *key) const noexcept'],['../classsimdjson_1_1dom_1_1element.html#aca693f57d73a5ce95d1f7bedf67289b7',1,'simdjson::dom::element::operator[](std::string_view key) const noexcept']]],
- ['string_5fview_446',['string_view',['../classsimdjson_1_1dom_1_1element.html#a83adcf723abff34d7c1e8ec0e69d967b',1,'simdjson::dom::element::string_view()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a30e8df60ace82837a17e52d5e457ac52',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::string_view()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8e5f2ff46639e6c1cffb73d4e071e491',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::string_view()'],['../structsimdjson_1_1padded__string.html#a4bf80c11155b8067a87bd76762bee23b',1,'simdjson::padded_string::string_view()']]]
+ ['object_429',['object',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#a034b27d7ff75832a574c2069af267111',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::object()'],['../classsimdjson_1_1dom_1_1object.html#ae2e1a8cbaab9d352495d1dc993407be3',1,'simdjson::dom::object::object()']]],
+ ['object_5fiterator_430',['object_iterator',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object__iterator.html#a9fce67dabeb5dcccd16fa531febec666',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object_iterator']]],
+ ['operator_20array_431',['operator array',['../classsimdjson_1_1dom_1_1element.html#a71d6bfa627dd66e202f8b402f91a44ac',1,'simdjson::dom::element::operator array()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a08307c0a5552cf8cb06613ed1de48eac',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator array()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a93756146a65e835b9358cc652dc53396',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator array()']]],
+ ['operator_20bool_432',['operator bool',['../classsimdjson_1_1dom_1_1element.html#ab036e52a73d5bd046e1f2650a31dab30',1,'simdjson::dom::element::operator bool()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a7df7ba140c9d6398fef2c6963da82230',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator bool()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#af7b51d9048d388235f3936c8fa30a2f7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator bool()']]],
+ ['operator_20const_20char_20_2a_433',['operator const char *',['../classsimdjson_1_1dom_1_1element.html#a8f9569b40dd2b23aab9fbf2229749589',1,'simdjson::dom::element']]],
+ ['operator_20double_434',['operator double',['../classsimdjson_1_1dom_1_1element.html#a743b5f1ef4202d8fb8fb317e612385f3',1,'simdjson::dom::element::operator double()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ae052e098bfbfde398845060a8d4f572f',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator double()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a53f99cedf58e62c1382a4d5a585e05a0',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator double()']]],
+ ['operator_20int64_5ft_435',['operator int64_t',['../classsimdjson_1_1dom_1_1element.html#afb98fdfcb6ddf19071cd2300613218d3',1,'simdjson::dom::element::operator int64_t()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a5d50aa0d396fc49855d3c0c571b07a25',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator int64_t()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a30f182e71d3c13d2656ba5983862be57',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator int64_t()']]],
+ ['operator_20object_436',['operator object',['../classsimdjson_1_1dom_1_1element.html#a23f4d8c38309b0184e658d8a9697a177',1,'simdjson::dom::element::operator object()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a89519c599fd938a6a750262111fc5757',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator object()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a6cd27fe6dc9062b5380db757d49c3f7b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator object()']]],
+ ['operator_20padded_5fstring_5fview_437',['operator padded_string_view',['../structsimdjson_1_1padded__string.html#a0e5b8e8917478af4e82e023c2efa40e9',1,'simdjson::padded_string']]],
+ ['operator_20raw_5fjson_5fstring_438',['operator raw_json_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a78411bf36298e3468ac83f3562b75d83',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator raw_json_string()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a85d69a32b4b95f353abe6214ecc98619',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator raw_json_string()']]],
+ ['operator_20t_26_26_439',['operator T&&',['../structsimdjson_1_1simdjson__result.html#afcce23c64894ec135fe8c2d255d2121b',1,'simdjson::simdjson_result::operator T&&()'],['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a11133790f4386ea4d11567a3a0806096',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base::operator T&&()']]],
+ ['operator_20uint64_5ft_440',['operator uint64_t',['../classsimdjson_1_1dom_1_1element.html#ae3c0226046e29cfb0e868c5251a87e53',1,'simdjson::dom::element::operator uint64_t()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a847db7139319155ef5fa2d4af7063163',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::operator uint64_t()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#afb7be23d4f1006d5eae234d8c8c8d286',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::operator uint64_t()']]],
+ ['operator_20value_441',['operator value',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#ad12185e1993ebcad73eb5ce82f5de8f7',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
+ ['operator_21_3d_442',['operator!=',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a05396b8e8322363b523b3bf9730a31f1',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::operator!=()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#abbca17b48bd6c2b045b659076f1f64ce',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator::operator!=()'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a1da5ce328cc2609432be961736c6e810',1,'simdjson::dom::object::iterator::operator!=()'],['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html#a56c69d73c7e424e008a28771661ab218',1,'simdjson::dom::document_stream::iterator::operator!=()'],['../classsimdjson_1_1dom_1_1array_1_1iterator.html#a2680a46eeece638bc352bcf6a169bcf6',1,'simdjson::dom::array::iterator::operator!=(const iterator &other) const noexcept']]],
+ ['operator_2a_443',['operator*',['../classsimdjson_1_1dom_1_1array_1_1iterator.html#a90254656d4e7a8826246d1f931647eff',1,'simdjson::dom::array::iterator::operator*()'],['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html#a09b193fe348fa8a267b96edd96f7515e',1,'simdjson::dom::document_stream::iterator::operator*()'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a688f6c7f451602bb3385a93252c0828a',1,'simdjson::dom::object::iterator::operator*()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#a1577fb5a95f92a4a1aaa8eee6440d572',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator::operator*()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a5fe3ce985cc1921d5917667d6b25841b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::operator*()']]],
+ ['operator_2b_2b_444',['operator++',['../classsimdjson_1_1dom_1_1object_1_1iterator.html#a83b3c467632c017400f95ff05d2367b3',1,'simdjson::dom::object::iterator::operator++()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream_1_1iterator.html#a03e0c8d93b86a18b10370d51b99548ef',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::iterator::operator++()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#a55e0ae33e5e5835c841fd082edab5937',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator::operator++()'],['../classsimdjson_1_1dom_1_1object_1_1iterator.html#aa26738ad08b7de3be4621a75863118ab',1,'simdjson::dom::object::iterator::operator++()'],['../classsimdjson_1_1dom_1_1document__stream_1_1iterator.html#a7b05ed75aa2b2a6d3a17204b9863956a',1,'simdjson::dom::document_stream::iterator::operator++()'],['../classsimdjson_1_1dom_1_1array_1_1iterator.html#a6ec91111a2bcc9e378d30b47b613fac5',1,'simdjson::dom::array::iterator::operator++() noexcept'],['../classsimdjson_1_1dom_1_1array_1_1iterator.html#a46454681bd5e3a938c04eb89210e7966',1,'simdjson::dom::array::iterator::operator++(int) noexcept']]],
+ ['operator_3c_3c_445',['operator<<',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ab10943c6107de5337f376a6939f817af',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<()'],['../namespacesimdjson.html#a43514fe76c3095e45f30a050a9551d27',1,'simdjson::operator<<()'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a386f80798c223c5fdbfc4dd9066a6b99',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson_result< json_type > &type) noexcept(false)'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ac3a4f6af474f2b5f6d749f7452bb5477',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value x)'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a24f9bbfe8b5a3017b4dd4b72dbccec4d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array value)'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#a6f753d5e1bc479321c51b54392a96a65',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document &value)'],['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#ae52a82c2f754a47eb9dac12223b3311d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator<<(std::ostream &out, simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object value)'],['../namespacesimdjson.html#a61a74357c3e9313ad84c5f1243fdf581',1,'simdjson::operator<<(std::ostream &out, simdjson_result< padded_string_view > &s) noexcept(false)'],['../namespacesimdjson.html#a39bbbf605c0068e4a65c2d8885727fc9',1,'simdjson::operator<<(std::ostream &out, simdjson_result< padded_string > &s) noexcept(false)'],['../namespacesimdjson.html#a537445bb236ae76d2b5559b1851b7108',1,'simdjson::operator<<(std::ostream &out, const padded_string &s)']]],
+ ['operator_3d_446',['operator=',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__stream.html#ac3c10596a0934f4f5375b986a35f90db',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document_stream::operator=()'],['../structsimdjson_1_1padded__string.html#aa43b3a8e0df4edcf960f04441dd9b930',1,'simdjson::padded_string::operator=()'],['../classsimdjson_1_1dom_1_1parser.html#af5b61dda345cef1feba7c4529dfe0259',1,'simdjson::dom::parser::operator=()'],['../classsimdjson_1_1dom_1_1document__stream.html#a162d002972b41bbb7d8e4021341e15ba',1,'simdjson::dom::document_stream::operator=()'],['../classsimdjson_1_1dom_1_1document.html#a336814aa587d9ca605e1548b22b2b80c',1,'simdjson::dom::document::operator=()']]],
+ ['operator_3d_3d_447',['operator==',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#aab771b17058b0c93bdd0a8679c2c4d84',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::operator==()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array__iterator.html#a20cd55e63cf5bdc1561f771b4db1ac1b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array_iterator::operator==()']]],
+ ['operator_5b_5d_448',['operator[]',['../classsimdjson_1_1dom_1_1object.html#a2691ceae488be203aac2d5ef5b67347f',1,'simdjson::dom::object::operator[](const char *key) const noexcept'],['../classsimdjson_1_1dom_1_1object.html#acc66a2f2eb74fbe359d4064531764f50',1,'simdjson::dom::object::operator[](std::string_view key) const noexcept'],['../classsimdjson_1_1dom_1_1element.html#a367d22eeabc1881a8eb18bae2f2ba3b8',1,'simdjson::dom::element::operator[](const char *key) const noexcept'],['../classsimdjson_1_1dom_1_1element.html#aca693f57d73a5ce95d1f7bedf67289b7',1,'simdjson::dom::element::operator[](std::string_view key) const noexcept']]],
+ ['string_5fview_449',['string_view',['../classsimdjson_1_1dom_1_1element.html#a83adcf723abff34d7c1e8ec0e69d967b',1,'simdjson::dom::element::string_view()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a30e8df60ace82837a17e52d5e457ac52',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::string_view()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a8e5f2ff46639e6c1cffb73d4e071e491',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::string_view()'],['../structsimdjson_1_1padded__string.html#a4bf80c11155b8067a87bd76762bee23b',1,'simdjson::padded_string::string_view()']]]
];
diff --git a/search/functions_e.js b/search/functions_e.js
index 38a24fbd9..fb4bf92c8 100644
--- a/search/functions_e.js
+++ b/search/functions_e.js
@@ -1,10 +1,10 @@
var searchData=
[
- ['padded_5fstring_447',['padded_string',['../structsimdjson_1_1padded__string.html#ac06ec74c78934565cdf50df163d35476',1,'simdjson::padded_string::padded_string(size_t length) noexcept'],['../structsimdjson_1_1padded__string.html#a1b15f9345c0215e7548df1aa0105de98',1,'simdjson::padded_string::padded_string(const char *data, size_t length) noexcept'],['../structsimdjson_1_1padded__string.html#a44fb0f219f05528e606f79dab7c32482',1,'simdjson::padded_string::padded_string(const std::string &str_) noexcept'],['../structsimdjson_1_1padded__string.html#a6199f5bf259fcac114addeef569cf5a5',1,'simdjson::padded_string::padded_string(std::string_view sv_) noexcept'],['../structsimdjson_1_1padded__string.html#a952eaf7ff8ddf252d9c00a693978a4da',1,'simdjson::padded_string::padded_string(padded_string &&o) noexcept'],['../structsimdjson_1_1padded__string.html#a8e10a3a5a46a4d58459b052975b0bf66',1,'simdjson::padded_string::padded_string() noexcept']]],
- ['padded_5fstring_5fview_448',['padded_string_view',['../classsimdjson_1_1padded__string__view.html#aae57856a217294ac218b6372a5e37d9a',1,'simdjson::padded_string_view::padded_string_view(const std::string &s) noexcept'],['../classsimdjson_1_1padded__string__view.html#a12b33830793e7ab1953b961088a83c3d',1,'simdjson::padded_string_view::padded_string_view(std::string_view s, size_t capacity) noexcept'],['../classsimdjson_1_1padded__string__view.html#a184b54acd28046a9c4f2a6cfa5419779',1,'simdjson::padded_string_view::padded_string_view(const uint8_t *s, size_t len, size_t capacity) noexcept'],['../classsimdjson_1_1padded__string__view.html#a47ac0063f7dd0ffd832c5e4439f2de30',1,'simdjson::padded_string_view::padded_string_view(const char *s, size_t len, size_t capacity) noexcept'],['../classsimdjson_1_1padded__string__view.html#aa338ad56304bc79e6ca1fab64af41de0',1,'simdjson::padded_string_view::padded_string_view() noexcept=default']]],
- ['padding_449',['padding',['../classsimdjson_1_1padded__string__view.html#a934e7272d22d6024383eafe07b06773c',1,'simdjson::padded_string_view']]],
- ['parse_450',['parse',['../classsimdjson_1_1dom_1_1parser.html#a16c7d1e28125ef7d5703244483f70984',1,'simdjson::dom::parser']]],
- ['parse_5finto_5fdocument_451',['parse_into_document',['../classsimdjson_1_1dom_1_1parser.html#a1afc4d3b429363b503a5605d66081e30',1,'simdjson::dom::parser']]],
- ['parse_5fmany_452',['parse_many',['../classsimdjson_1_1dom_1_1parser.html#afb18710d2e2ef0fd40dda4887282bdb2',1,'simdjson::dom::parser']]],
- ['parser_453',['parser',['../classsimdjson_1_1dom_1_1parser.html#a09370efac9e1b7d9b4a8349332e026c3',1,'simdjson::dom::parser::parser(size_t max_capacity=SIMDJSON_MAXSIZE_BYTES) noexcept'],['../classsimdjson_1_1dom_1_1parser.html#a3f3c80565fe63857e2901c48e7bed64d',1,'simdjson::dom::parser::parser(parser &&other) noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a76abd4d78f0c26d80d3bf436ce212e00',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::parser()']]]
+ ['padded_5fstring_450',['padded_string',['../structsimdjson_1_1padded__string.html#ac06ec74c78934565cdf50df163d35476',1,'simdjson::padded_string::padded_string(size_t length) noexcept'],['../structsimdjson_1_1padded__string.html#a1b15f9345c0215e7548df1aa0105de98',1,'simdjson::padded_string::padded_string(const char *data, size_t length) noexcept'],['../structsimdjson_1_1padded__string.html#a44fb0f219f05528e606f79dab7c32482',1,'simdjson::padded_string::padded_string(const std::string &str_) noexcept'],['../structsimdjson_1_1padded__string.html#a6199f5bf259fcac114addeef569cf5a5',1,'simdjson::padded_string::padded_string(std::string_view sv_) noexcept'],['../structsimdjson_1_1padded__string.html#a952eaf7ff8ddf252d9c00a693978a4da',1,'simdjson::padded_string::padded_string(padded_string &&o) noexcept'],['../structsimdjson_1_1padded__string.html#a8e10a3a5a46a4d58459b052975b0bf66',1,'simdjson::padded_string::padded_string() noexcept']]],
+ ['padded_5fstring_5fview_451',['padded_string_view',['../classsimdjson_1_1padded__string__view.html#aae57856a217294ac218b6372a5e37d9a',1,'simdjson::padded_string_view::padded_string_view(const std::string &s) noexcept'],['../classsimdjson_1_1padded__string__view.html#a12b33830793e7ab1953b961088a83c3d',1,'simdjson::padded_string_view::padded_string_view(std::string_view s, size_t capacity) noexcept'],['../classsimdjson_1_1padded__string__view.html#a184b54acd28046a9c4f2a6cfa5419779',1,'simdjson::padded_string_view::padded_string_view(const uint8_t *s, size_t len, size_t capacity) noexcept'],['../classsimdjson_1_1padded__string__view.html#a47ac0063f7dd0ffd832c5e4439f2de30',1,'simdjson::padded_string_view::padded_string_view(const char *s, size_t len, size_t capacity) noexcept'],['../classsimdjson_1_1padded__string__view.html#aa338ad56304bc79e6ca1fab64af41de0',1,'simdjson::padded_string_view::padded_string_view() noexcept=default']]],
+ ['padding_452',['padding',['../classsimdjson_1_1padded__string__view.html#a934e7272d22d6024383eafe07b06773c',1,'simdjson::padded_string_view']]],
+ ['parse_453',['parse',['../classsimdjson_1_1dom_1_1parser.html#a16c7d1e28125ef7d5703244483f70984',1,'simdjson::dom::parser']]],
+ ['parse_5finto_5fdocument_454',['parse_into_document',['../classsimdjson_1_1dom_1_1parser.html#a1afc4d3b429363b503a5605d66081e30',1,'simdjson::dom::parser']]],
+ ['parse_5fmany_455',['parse_many',['../classsimdjson_1_1dom_1_1parser.html#afb18710d2e2ef0fd40dda4887282bdb2',1,'simdjson::dom::parser']]],
+ ['parser_456',['parser',['../classsimdjson_1_1dom_1_1parser.html#a09370efac9e1b7d9b4a8349332e026c3',1,'simdjson::dom::parser::parser(size_t max_capacity=SIMDJSON_MAXSIZE_BYTES) noexcept'],['../classsimdjson_1_1dom_1_1parser.html#a3f3c80565fe63857e2901c48e7bed64d',1,'simdjson::dom::parser::parser(parser &&other) noexcept'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1parser.html#a76abd4d78f0c26d80d3bf436ce212e00',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::parser::parser()']]]
];
diff --git a/search/functions_f.js b/search/functions_f.js
index 156e1f44e..2a4e1a5a7 100644
--- a/search/functions_f.js
+++ b/search/functions_f.js
@@ -1,11 +1,11 @@
var searchData=
[
- ['raw_454',['raw',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a8736f5e397a3e0a55090aadee0596214',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string']]],
- ['raw_5fjson_455',['raw_json',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#ad8a7f0b418fae60160e403f71a5a8088',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::raw_json()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aa3a27654a19c386ad0c775cff258cf0c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::raw_json()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#a71600033791f9c6bbc9f40fb2f82fdc8',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::raw_json()']]],
- ['raw_5fjson_5fstring_456',['raw_json_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a78b420ddb8a0570ee973cdfbccd31c9a',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::raw_json_string() noexcept=default'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#acf64001cc9961cd01712211b778e760b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::raw_json_string(const uint8_t *_buf) noexcept']]],
- ['raw_5fjson_5ftoken_457',['raw_json_token',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a58802e77b6fb25a3d2ec8a4d2482f9bf',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::raw_json_token()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a0bcbee63db869ac122bed75000b54d46',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >::raw_json_token()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ac1bcd8afb10742d6f18b8f2f07ba0392',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >::raw_json_token()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a37427e768435aafef5af097b8cc3cfec',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::raw_json_token()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a442b2e5803e69d4845b5b7f7bd51a0ed',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >::raw_json_token()']]],
- ['reset_458',['reset',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#ae7248918b09cb4cb1d866605c641679d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::reset()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ae0bc6b9803e0c989e9defaf3edcaaae4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::reset()']]],
- ['resume_459',['resume',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a970f5c3f3e668a399765d52c7426764d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value']]],
- ['rewind_460',['rewind',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a9cc053001e8246e6e65bbcbf3db035c4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
- ['root_461',['root',['../classsimdjson_1_1dom_1_1document.html#ae19dced0eee5f63b9d1591ef51dcda4e',1,'simdjson::dom::document']]]
+ ['raw_457',['raw',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a8736f5e397a3e0a55090aadee0596214',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string']]],
+ ['raw_5fjson_458',['raw_json',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#ad8a7f0b418fae60160e403f71a5a8088',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::raw_json()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#aa3a27654a19c386ad0c775cff258cf0c',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::raw_json()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#a71600033791f9c6bbc9f40fb2f82fdc8',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::raw_json()']]],
+ ['raw_5fjson_5fstring_459',['raw_json_string',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#a78b420ddb8a0570ee973cdfbccd31c9a',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::raw_json_string() noexcept=default'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string.html#acf64001cc9961cd01712211b778e760b',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string::raw_json_string(const uint8_t *_buf) noexcept']]],
+ ['raw_5fjson_5ftoken_460',['raw_json_token',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a58802e77b6fb25a3d2ec8a4d2482f9bf',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::raw_json_token()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a0bcbee63db869ac122bed75000b54d46',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >::raw_json_token()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ac1bcd8afb10742d6f18b8f2f07ba0392',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >::raw_json_token()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a37427e768435aafef5af097b8cc3cfec',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value::raw_json_token()'],['../structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a442b2e5803e69d4845b5b7f7bd51a0ed',1,'simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >::raw_json_token()']]],
+ ['reset_461',['reset',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#ae7248918b09cb4cb1d866605c641679d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::reset()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1object.html#ae0bc6b9803e0c989e9defaf3edcaaae4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::object::reset()']]],
+ ['resume_462',['resume',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value.html#a970f5c3f3e668a399765d52c7426764d',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::value']]],
+ ['rewind_463',['rewind',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a9cc053001e8246e6e65bbcbf3db035c4',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]],
+ ['root_464',['root',['../classsimdjson_1_1dom_1_1document.html#ae19dced0eee5f63b9d1591ef51dcda4e',1,'simdjson::dom::document']]]
];
diff --git a/search/groups_0.js b/search/groups_0.js
index e3c6cb0f7..b6101732b 100644
--- a/search/groups_0.js
+++ b/search/groups_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['array_20iteration_560',['Array iteration',['../group__array.html',1,'']]]
+ ['array_20iteration_564',['Array iteration',['../group__array.html',1,'']]]
];
diff --git a/search/groups_1.js b/search/groups_1.js
index 39fb05b06..a54c70e95 100644
--- a/search/groups_1.js
+++ b/search/groups_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['object_20iteration_561',['Object iteration',['../group__object.html',1,'']]]
+ ['object_20iteration_565',['Object iteration',['../group__object.html',1,'']]]
];
diff --git a/search/groups_2.js b/search/groups_2.js
index bac2643ea..e16369c1c 100644
--- a/search/groups_2.js
+++ b/search/groups_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['scalar_20values_562',['Scalar values',['../group__scalar.html',1,'']]]
+ ['scalar_20values_566',['Scalar values',['../group__scalar.html',1,'']]]
];
diff --git a/search/namespaces_0.js b/search/namespaces_0.js
index 48ace5d7e..888064f10 100644
--- a/search/namespaces_0.js
+++ b/search/namespaces_0.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['ondemand_331',['ondemand',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
- ['simdjson_332',['simdjson',['../namespacesimdjson.html',1,'']]]
+ ['ondemand_333',['ondemand',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html',1,'simdjson::SIMDJSON_IMPLEMENTATION']]],
+ ['simdjson_334',['simdjson',['../namespacesimdjson.html',1,'']]]
];
diff --git a/search/pages_0.js b/search/pages_0.js
index c8a8f8a67..4eac08c45 100644
--- a/search/pages_0.js
+++ b/search/pages_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['a_20better_20way_20to_20parse_20documents_3f_563',['A Better Way to Parse Documents?',['../md_doc_ondemand_design.html',1,'']]]
+ ['a_20better_20way_20to_20parse_20documents_3f_567',['A Better Way to Parse Documents?',['../md_doc_ondemand_design.html',1,'']]]
];
diff --git a/search/pages_1.js b/search/pages_1.js
index c87823e13..459330bda 100644
--- a/search/pages_1.js
+++ b/search/pages_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['cpu_20architecture_2dspecific_20implementations_564',['CPU Architecture-Specific Implementations',['../md_doc_implementation_selection.html',1,'']]]
+ ['cpu_20architecture_2dspecific_20implementations_568',['CPU Architecture-Specific Implementations',['../md_doc_implementation_selection.html',1,'']]]
];
diff --git a/search/pages_2.js b/search/pages_2.js
index bf0c149a2..3147722d5 100644
--- a/search/pages_2.js
+++ b/search/pages_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['deprecated_20list_565',['Deprecated List',['../deprecated.html',1,'']]]
+ ['deprecated_20list_569',['Deprecated List',['../deprecated.html',1,'']]]
];
diff --git a/search/pages_3.js b/search/pages_3.js
index 2ccbdd9b6..5b3a1d6a0 100644
--- a/search/pages_3.js
+++ b/search/pages_3.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['iterate_5fmany_566',['iterate_many',['../md_doc_iterate_many.html',1,'']]]
+ ['iterate_5fmany_570',['iterate_many',['../md_doc_iterate_many.html',1,'']]]
];
diff --git a/search/pages_4.js b/search/pages_4.js
index 5be55f5bd..89fb9b4c0 100644
--- a/search/pages_4.js
+++ b/search/pages_4.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['parse_5fmany_567',['parse_many',['../md_doc_parse_many.html',1,'']]],
- ['performance_20notes_568',['Performance Notes',['../md_doc_performance.html',1,'']]]
+ ['parse_5fmany_571',['parse_many',['../md_doc_parse_many.html',1,'']]],
+ ['performance_20notes_572',['Performance Notes',['../md_doc_performance.html',1,'']]]
];
diff --git a/search/pages_5.js b/search/pages_5.js
index 53402230f..cc2c2ce76 100644
--- a/search/pages_5.js
+++ b/search/pages_5.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['tape_20structure_20in_20simdjson_569',['Tape structure in simdjson',['../md_doc_tape.html',1,'']]],
- ['the_20basics_570',['The Basics',['../md_doc_basics.html',1,'']]],
- ['the_20document_2dobject_2dmodel_20_28dom_29_20front_2dend_571',['The Document-Object-Model (DOM) front-end',['../md_doc_dom.html',1,'']]]
+ ['tape_20structure_20in_20simdjson_573',['Tape structure in simdjson',['../md_doc_tape.html',1,'']]],
+ ['the_20basics_574',['The Basics',['../md_doc_basics.html',1,'']]],
+ ['the_20document_2dobject_2dmodel_20_28dom_29_20front_2dend_575',['The Document-Object-Model (DOM) front-end',['../md_doc_dom.html',1,'']]]
];
diff --git a/search/typedefs_0.js b/search/typedefs_0.js
index ef4a08f6e..f86c3528a 100644
--- a/search/typedefs_0.js
+++ b/search/typedefs_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['depth_5ft_511',['depth_t',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#af941be7ff0cfaeb30d15d2fb52e76dd1',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
+ ['depth_5ft_515',['depth_t',['../namespacesimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand.html#af941be7ff0cfaeb30d15d2fb52e76dd1',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand']]]
];
diff --git a/search/typedefs_1.js b/search/typedefs_1.js
index b28c0f541..b35a2686d 100644
--- a/search/typedefs_1.js
+++ b/search/typedefs_1.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['errorvalues_512',['ErrorValues',['../namespacesimdjson.html#a63b494af834917af13120dcd57719bdb',1,'simdjson']]]
+ ['errorvalues_516',['ErrorValues',['../namespacesimdjson.html#a63b494af834917af13120dcd57719bdb',1,'simdjson']]]
];
diff --git a/search/typedefs_2.js b/search/typedefs_2.js
index 7f31f3ab0..aca2d955f 100644
--- a/search/typedefs_2.js
+++ b/search/typedefs_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['parsedjson_513',['ParsedJson',['../namespacesimdjson.html#a9245ff68919610377256bb9b21070e2a',1,'simdjson']]]
+ ['parsedjson_517',['ParsedJson',['../namespacesimdjson.html#a9245ff68919610377256bb9b21070e2a',1,'simdjson']]]
];
diff --git a/search/variables_0.js b/search/variables_0.js
index 829908394..408cd87ab 100644
--- a/search/variables_0.js
+++ b/search/variables_0.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['buf_496',['buf',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a961b4870710d5ee1da938c4923d6f68d',1,'simdjson::SIMDJSON_IMPLEMENTATION::dom_parser_implementation']]]
+ ['buf_500',['buf',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a961b4870710d5ee1da938c4923d6f68d',1,'simdjson::SIMDJSON_IMPLEMENTATION::dom_parser_implementation']]]
];
diff --git a/search/variables_1.js b/search/variables_1.js
index 13fa9b2ad..831d2d128 100644
--- a/search/variables_1.js
+++ b/search/variables_1.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['default_5fmax_5fdepth_497',['DEFAULT_MAX_DEPTH',['../namespacesimdjson.html#a6df2598eb1d4e1ea669c41831cc7325d',1,'simdjson']]],
- ['doc_498',['doc',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a4089d6265ec845fd85acd2db0973b858',1,'simdjson::SIMDJSON_IMPLEMENTATION::dom_parser_implementation']]],
- ['document_5fdepth_499',['DOCUMENT_DEPTH',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a18847ef30e5800f1c628a344c23ec968',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]]
+ ['default_5fmax_5fdepth_501',['DEFAULT_MAX_DEPTH',['../namespacesimdjson.html#a6df2598eb1d4e1ea669c41831cc7325d',1,'simdjson']]],
+ ['doc_502',['doc',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a4089d6265ec845fd85acd2db0973b858',1,'simdjson::SIMDJSON_IMPLEMENTATION::dom_parser_implementation']]],
+ ['document_5fdepth_503',['DOCUMENT_DEPTH',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a18847ef30e5800f1c628a344c23ec968',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document']]]
];
diff --git a/search/variables_2.js b/search/variables_2.js
index 24cf52ef2..3130afc65 100644
--- a/search/variables_2.js
+++ b/search/variables_2.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['first_500',['first',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#ae51247dce4e77f1e6067cfd4654cca30',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base']]]
+ ['first_504',['first',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#ae51247dce4e77f1e6067cfd4654cca30',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base']]]
];
diff --git a/search/variables_3.js b/search/variables_3.js
index be694c445..aab76e90f 100644
--- a/search/variables_3.js
+++ b/search/variables_3.js
@@ -1,5 +1,5 @@
var searchData=
[
- ['is_5farray_501',['is_array',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a9b82f3273bb2f2f83b8e085b7d9c6613',1,'simdjson::SIMDJSON_IMPLEMENTATION::dom_parser_implementation']]],
- ['iter_502',['iter',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a2d84851f9e4fc07b3e518ea957e2d9b6',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::iter()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a969e1000319391cd2bee3aed88481500',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::iter()']]]
+ ['is_5farray_505',['is_array',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a9b82f3273bb2f2f83b8e085b7d9c6613',1,'simdjson::SIMDJSON_IMPLEMENTATION::dom_parser_implementation']]],
+ ['iter_506',['iter',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1array.html#a2d84851f9e4fc07b3e518ea957e2d9b6',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::array::iter()'],['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document.html#a969e1000319391cd2bee3aed88481500',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::document::iter()']]]
];
diff --git a/search/variables_4.js b/search/variables_4.js
index 5bd56fc83..5da055887 100644
--- a/search/variables_4.js
+++ b/search/variables_4.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['key_503',['key',['../classsimdjson_1_1dom_1_1key__value__pair.html#a58c41d937401cfe88ceb6e71d7dbeb45',1,'simdjson::dom::key_value_pair']]]
+ ['key_507',['key',['../classsimdjson_1_1dom_1_1key__value__pair.html#a58c41d937401cfe88ceb6e71d7dbeb45',1,'simdjson::dom::key_value_pair']]]
];
diff --git a/search/variables_5.js b/search/variables_5.js
index c89484e54..cef988a22 100644
--- a/search/variables_5.js
+++ b/search/variables_5.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['len_504',['len',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a132a95e1147b80c2533d1632185a6a09',1,'simdjson::SIMDJSON_IMPLEMENTATION::dom_parser_implementation']]]
+ ['len_508',['len',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a132a95e1147b80c2533d1632185a6a09',1,'simdjson::SIMDJSON_IMPLEMENTATION::dom_parser_implementation']]]
];
diff --git a/search/variables_6.js b/search/variables_6.js
index 723a773ac..d92e927d1 100644
--- a/search/variables_6.js
+++ b/search/variables_6.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['open_5fcontainers_505',['open_containers',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a9c67c6c782f1296319a58ec1586f2329',1,'simdjson::SIMDJSON_IMPLEMENTATION::dom_parser_implementation']]]
+ ['open_5fcontainers_509',['open_containers',['../classsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1dom__parser__implementation.html#a9c67c6c782f1296319a58ec1586f2329',1,'simdjson::SIMDJSON_IMPLEMENTATION::dom_parser_implementation']]]
];
diff --git a/search/variables_7.js b/search/variables_7.js
index bc7db6210..40be2c6f6 100644
--- a/search/variables_7.js
+++ b/search/variables_7.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['payload_506',['payload',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#aa17e81138859bcef934d9502a9852049',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]]
+ ['payload_510',['payload',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1number.html#aa17e81138859bcef934d9502a9852049',1,'simdjson::SIMDJSON_IMPLEMENTATION::ondemand::number']]]
];
diff --git a/search/variables_8.js b/search/variables_8.js
index 048f94ec3..ba6f7caf8 100644
--- a/search/variables_8.js
+++ b/search/variables_8.js
@@ -1,6 +1,6 @@
var searchData=
[
- ['second_507',['second',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a25289df3eaabd14f029e9872a6db3dfb',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base']]],
- ['simdjson_5fmaxsize_5fbytes_508',['SIMDJSON_MAXSIZE_BYTES',['../namespacesimdjson.html#ac66973a7111dc4aa96ba7b3434344347',1,'simdjson']]],
- ['simdjson_5fpadding_509',['SIMDJSON_PADDING',['../namespacesimdjson.html#aecdd750132f0eb123a6d61113b4197bf',1,'simdjson']]]
+ ['second_511',['second',['../structsimdjson_1_1_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1implementation__simdjson__result__base.html#a25289df3eaabd14f029e9872a6db3dfb',1,'simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base']]],
+ ['simdjson_5fmaxsize_5fbytes_512',['SIMDJSON_MAXSIZE_BYTES',['../namespacesimdjson.html#ac66973a7111dc4aa96ba7b3434344347',1,'simdjson']]],
+ ['simdjson_5fpadding_513',['SIMDJSON_PADDING',['../namespacesimdjson.html#aecdd750132f0eb123a6d61113b4197bf',1,'simdjson']]]
];
diff --git a/search/variables_9.js b/search/variables_9.js
index e2fde4e0b..1a1a09233 100644
--- a/search/variables_9.js
+++ b/search/variables_9.js
@@ -1,4 +1,4 @@
var searchData=
[
- ['value_510',['value',['../classsimdjson_1_1dom_1_1key__value__pair.html#af7e38d9eb63a40256c9f936e45edf703',1,'simdjson::dom::key_value_pair']]]
+ ['value_514',['value',['../classsimdjson_1_1dom_1_1key__value__pair.html#af7e38d9eb63a40256c9f936e45edf703',1,'simdjson::dom::key_value_pair']]]
];
diff --git a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondeman0b124547aa99491b95d3b709cc8ba113.html b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondeman0b124547aa99491b95d3b709cc8ba113.html
index 61149b57e..cccc439bc 100644
--- a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondeman0b124547aa99491b95d3b709cc8ba113.html
+++ b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondeman0b124547aa99491b95d3b709cc8ba113.html
@@ -107,12 +107,13 @@ $(document).ready(function(){initNavTree('structsimdjson_1_1simdjson__result_3_0
| simdjson_result() noexcept=default (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | |
| take_value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | |
| tie(SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string &value, error_code &error) &&noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | |
- | unescape(SIMDJSON_IMPLEMENTATION::ondemand::json_iterator &iter) const noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | |
- | value() &noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | |
- | value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | |
- | value_unsafe() const &noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | |
- | value_unsafe() &noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | |
- | value_unsafe() &&noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | |
+ | unescape(SIMDJSON_IMPLEMENTATION::ondemand::json_iterator &iter, bool allow_replacement) const noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | |
+ | unescape_wobbly(SIMDJSON_IMPLEMENTATION::ondemand::json_iterator &iter) const noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | |
+ | value() &noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | |
+ | value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | |
+ | value_unsafe() const &noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | |
+ | value_unsafe() &noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | |
+ | value_unsafe() &&noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | |
diff --git a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondeman73f6105c02baf0bea5c887e614f5b224.html b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondeman73f6105c02baf0bea5c887e614f5b224.html
index c26538e91..2f8259fa5 100644
--- a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondeman73f6105c02baf0bea5c887e614f5b224.html
+++ b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondeman73f6105c02baf0bea5c887e614f5b224.html
@@ -119,43 +119,44 @@ $(document).ready(function(){initNavTree('structsimdjson_1_1simdjson__result_3_0
| get_number_type() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
| get_object() &noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
| get_raw_json_string() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | get_string() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | get_string(bool allow_replacement=false) noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
| get_uint64() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
| get_uint64_in_string() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
| get_value() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | implementation_simdjson_result_base() noexcept=default | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | implementation_simdjson_result_base(error_code error) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | implementation_simdjson_result_base(SIMDJSON_IMPLEMENTATION::ondemand::document_reference &&value) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | implementation_simdjson_result_base(SIMDJSON_IMPLEMENTATION::ondemand::document_reference &&value, error_code error) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | is_integer() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | is_negative() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | is_null() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | is_scalar() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | operator bool() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | operator double() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | operator int64_t() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | operator SIMDJSON_IMPLEMENTATION::ondemand::array() &noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | operator SIMDJSON_IMPLEMENTATION::ondemand::document_reference &&() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | operator SIMDJSON_IMPLEMENTATION::ondemand::object() &noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | operator SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | operator SIMDJSON_IMPLEMENTATION::ondemand::value() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | operator std::string_view() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | operator uint64_t() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | operator[](std::string_view key) &noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | operator[](const char *key) &noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | raw_json_token() noexcept | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | rewind() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | second | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | protected |
- | simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::document_reference value, error_code error) noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | simdjson_result() noexcept=default (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | take_value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | tie(SIMDJSON_IMPLEMENTATION::ondemand::document_reference &value, error_code &error) &&noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | type() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | value() &noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | value_unsafe() const &noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | value_unsafe() &noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
- | value_unsafe() &&noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | get_wobbly_string() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | implementation_simdjson_result_base() noexcept=default | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | implementation_simdjson_result_base(error_code error) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | implementation_simdjson_result_base(SIMDJSON_IMPLEMENTATION::ondemand::document_reference &&value) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | implementation_simdjson_result_base(SIMDJSON_IMPLEMENTATION::ondemand::document_reference &&value, error_code error) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | is_integer() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | is_negative() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | is_null() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | is_scalar() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | operator bool() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | operator double() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | operator int64_t() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | operator SIMDJSON_IMPLEMENTATION::ondemand::array() &noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | operator SIMDJSON_IMPLEMENTATION::ondemand::document_reference &&() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | operator SIMDJSON_IMPLEMENTATION::ondemand::object() &noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | operator SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | operator SIMDJSON_IMPLEMENTATION::ondemand::value() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | operator std::string_view() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | operator uint64_t() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | operator[](std::string_view key) &noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | operator[](const char *key) &noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | raw_json_token() noexcept | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | rewind() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | second | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | protected |
+ | simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::document_reference value, error_code error) noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | simdjson_result() noexcept=default (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | take_value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | tie(SIMDJSON_IMPLEMENTATION::ondemand::document_reference &value, error_code &error) &&noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | type() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | value() &noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | value_unsafe() const &noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | value_unsafe() &noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
+ | value_unsafe() &&noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document_reference > | |
diff --git a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4-members.html b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4-members.html
index b21363417..a167d7801 100644
--- a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4-members.html
+++ b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4-members.html
@@ -130,42 +130,43 @@ $(document).ready(function(){initNavTree('structsimdjson_1_1simdjson__result_3_0
| get_number_type() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
| get_object() &noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
| get_raw_json_string() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | get_string() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | get_string(bool allow_replacement=false) noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
| get_uint64() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
| get_uint64_in_string() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
| get_value() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | implementation_simdjson_result_base() noexcept=default | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | implementation_simdjson_result_base(error_code error) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | implementation_simdjson_result_base(SIMDJSON_IMPLEMENTATION::ondemand::document &&value) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | implementation_simdjson_result_base(SIMDJSON_IMPLEMENTATION::ondemand::document &&value, error_code error) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | is_integer() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | is_negative() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | is_null() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | is_scalar() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | operator bool() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | operator double() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | operator int64_t() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | operator SIMDJSON_IMPLEMENTATION::ondemand::array() &noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | operator SIMDJSON_IMPLEMENTATION::ondemand::document &&() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | operator SIMDJSON_IMPLEMENTATION::ondemand::object() &noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | operator SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | operator SIMDJSON_IMPLEMENTATION::ondemand::value() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | operator std::string_view() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | operator uint64_t() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | operator[](std::string_view key) &noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | operator[](const char *key) &noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | raw_json_token() noexcept | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | rewind() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | second | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | protected |
- | simdjson_result() noexcept=default (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | take_value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | tie(SIMDJSON_IMPLEMENTATION::ondemand::document &value, error_code &error) &&noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | type() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | value() &noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | value_unsafe() const &noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | value_unsafe() &noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
- | value_unsafe() &&noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | get_wobbly_string() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | implementation_simdjson_result_base() noexcept=default | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | implementation_simdjson_result_base(error_code error) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | implementation_simdjson_result_base(SIMDJSON_IMPLEMENTATION::ondemand::document &&value) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | implementation_simdjson_result_base(SIMDJSON_IMPLEMENTATION::ondemand::document &&value, error_code error) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | is_integer() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | is_negative() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | is_null() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | is_scalar() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | operator bool() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | operator double() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | operator int64_t() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | operator SIMDJSON_IMPLEMENTATION::ondemand::array() &noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | operator SIMDJSON_IMPLEMENTATION::ondemand::document &&() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | operator SIMDJSON_IMPLEMENTATION::ondemand::object() &noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | operator SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | operator SIMDJSON_IMPLEMENTATION::ondemand::value() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | operator std::string_view() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | operator uint64_t() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | operator[](std::string_view key) &noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | operator[](const char *key) &noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | raw_json_token() noexcept | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | rewind() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | second | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | protected |
+ | simdjson_result() noexcept=default (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | take_value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | tie(SIMDJSON_IMPLEMENTATION::ondemand::document &value, error_code &error) &&noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | type() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | value() &noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | value_unsafe() const &noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | value_unsafe() &noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
+ | value_unsafe() &&noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::document > | |
diff --git a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html
index 6f2712d05..8f8d4fb40 100644
--- a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html
+++ b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html
@@ -133,9 +133,12 @@ simdjson_inline sim
|
simdjson_inline simdjson_result< double > | get_double_in_string () noexcept |
| |
-|
-simdjson_inline simdjson_result< std::string_view > | get_string () noexcept |
-| |
+|
+simdjson_inline simdjson_result< std::string_view > | get_string (bool allow_replacement=false) noexcept |
+| |
+|
+simdjson_inline simdjson_result< std::string_view > | get_wobbly_string () noexcept |
+| |
|
simdjson_inline simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | get_raw_json_string () noexcept |
| |
@@ -349,7 +352,7 @@ Additional Inherited Members
-
Definition at line 655 of file document.h.
+
Definition at line 669 of file document.h.
◆ raw_json_token()
@@ -377,7 +380,7 @@ Additional Inherited Members
std::string_view document::raw_json_token() const noexcept
std::string_view document::raw_json_token() const noexcept
-Definition at line 498 of file document-inl.h.
+Definition at line 505 of file document-inl.h.
diff --git a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.js b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.js
index 427792cc6..4258e54e3 100644
--- a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.js
+++ b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.js
@@ -35,10 +35,11 @@ var structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_
[ "get_number_type", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a2d53b6aa5b0316e08cbc16e6f970d3c8", null ],
[ "get_object", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a52332b6ab6b8098fca5d73c575b8f3e7", null ],
[ "get_raw_json_string", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a458029a37b519f4594dc78812fee8657", null ],
- [ "get_string", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a4da9f9206bcbc12a8bfb88fdf3473b9f", null ],
+ [ "get_string", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a7c2a11edb53792f1a4c6fe2654060380", null ],
[ "get_uint64", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#ac3cf80b50922d31e34a069b45c4e125b", null ],
[ "get_uint64_in_string", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a61c56912d76a1a730e4cf9b5aea5d69f", null ],
[ "get_value", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a24f63365bd58c9f0c6ec1aae438e008d", null ],
+ [ "get_wobbly_string", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#af382335314631deb5c352ac86cb25b67", null ],
[ "is_integer", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a59a47cbdb4c226a7d33e0315cce62984", null ],
[ "is_negative", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a662ec28f78a9fcba046eaa4509efa6a3", null ],
[ "is_null", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document_01_4.html#a55eeb1baf095500e8cf3d97f67e362bd", null ],
diff --git a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html
index 944ef6832..cf051bbae 100644
--- a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html
+++ b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html
@@ -136,9 +136,12 @@ simdjson_inline sim
|
simdjson_inline simdjson_result< double > | get_double_in_string () noexcept |
| |
-|
-simdjson_inline simdjson_result< std::string_view > | get_string () noexcept |
-| |
+|
+simdjson_inline simdjson_result< std::string_view > | get_string (bool allow_replacement=false) noexcept |
+| |
+|
+simdjson_inline simdjson_result< std::string_view > | get_wobbly_string () noexcept |
+| |
|
simdjson_inline simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | get_raw_json_string () noexcept |
| |
@@ -304,7 +307,7 @@ Additional Inherited Members
-
Definition at line 726 of file document.h.
+
Definition at line 741 of file document.h.
◆ raw_json_token()
@@ -332,7 +335,7 @@ Additional Inherited Members
std::string_view document_reference::raw_json_token() const noexcept
std::string_view document_reference::raw_json_token() const noexcept
-Definition at line 761 of file document-inl.h.
+Definition at line 773 of file document-inl.h.
diff --git a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.js b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.js
index 818d67502..a39591234 100644
--- a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.js
+++ b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.js
@@ -24,10 +24,11 @@ var structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_
[ "get_number_type", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a0eec4670ea5b5a698b75f8ed05d6a0f9", null ],
[ "get_object", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a6cdc33399794644363a720d6f271dd8d", null ],
[ "get_raw_json_string", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a90ecb32d9f0c497568d4de9b9affcb04", null ],
- [ "get_string", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ae24e30225c73597e585032bae8a8b0df", null ],
+ [ "get_string", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a67dfd1cb54a3a739aeac8571f8a5d1b5", null ],
[ "get_uint64", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ad65311d0d524203aeb76a4ecb25e8a71", null ],
[ "get_uint64_in_string", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ace8e77df3989649fdeb84110a37521db", null ],
[ "get_value", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#ac2d22c558afdcbac2d66e2d333526202", null ],
+ [ "get_wobbly_string", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a29727f780e4a992da817cc00ad7bd571", null ],
[ "is_integer", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#af95dc38aa04430734b691ff4ba1326f7", null ],
[ "is_negative", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a24eb1bccb3246b65ba607c838fc1af0b", null ],
[ "is_null", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1document__reference_01_4.html#a956a0b0a4f8f910c45be61370ae96586", null ],
diff --git a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4-members.html b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4-members.html
index 050cddad3..489ea47a6 100644
--- a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4-members.html
+++ b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4-members.html
@@ -107,7 +107,7 @@ $(document).ready(function(){initNavTree('structsimdjson_1_1simdjson__result_3_0
| simdjson_result() noexcept=default (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::field >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::field > | |
| take_value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::field > | |
| tie(SIMDJSON_IMPLEMENTATION::ondemand::field &value, error_code &error) &&noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::field > | |
- | unescaped_key() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::field >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::field > | |
+ | unescaped_key(bool allow_replacement=false) noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::field >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::field > | |
| value() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::field >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::field > | |
| implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::field >::value() &noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::field > | |
| implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::field >::value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::field > | |
diff --git a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html
index ff38d524d..10a8e33fe 100644
--- a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html
+++ b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html
@@ -106,9 +106,9 @@ Inheritance diagram for simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::o
|
-|
-simdjson_inline simdjson_result< std::string_view > | unescaped_key () noexcept |
-| |
+|
+simdjson_inline simdjson_result< std::string_view > | unescaped_key (bool allow_replacement=false) noexcept |
+| |
|
simdjson_inline simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | key () noexcept |
| |
diff --git a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.js b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.js
index 1d6563096..7a9f1c26d 100644
--- a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.js
+++ b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.js
@@ -2,6 +2,6 @@ var structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_
[
[ "simdjson_result", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html#a6695a8029809bfab31032f0be7844ac7", null ],
[ "key", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html#aac77e0603e92469678c4df491bbfdfb0", null ],
- [ "unescaped_key", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html#ad3ba1ce637014dcdf5e983cd0f5191b5", null ],
+ [ "unescaped_key", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html#aa22a43982b32aec089b0f53164597aa4", null ],
[ "value", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1field_01_4.html#a9f89064d5c15ade4c610381264844ae1", null ]
];
\ No newline at end of file
diff --git a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1json__iterator_01_4.html b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1json__iterator_01_4.html
index 916611571..0e6ffa8ab 100644
--- a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1json__iterator_01_4.html
+++ b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1json__iterator_01_4.html
@@ -165,7 +165,7 @@ SIMDJSON_IMPLEMENTATION::ondemand::json_iterator
- Definition at line 305 of file json_iterator.h.
+ Definition at line 306 of file json_iterator.h.
The documentation for this struct was generated from the following files: |
|
simdjson_inline simdjson_result< const char * > | raw () const noexcept |
| |
-|
-simdjson_inline simdjson_warn_unused simdjson_result< std::string_view > | unescape (SIMDJSON_IMPLEMENTATION::ondemand::json_iterator &iter) const noexcept |
-| |
+|
+simdjson_inline simdjson_warn_unused simdjson_result< std::string_view > | unescape (SIMDJSON_IMPLEMENTATION::ondemand::json_iterator &iter, bool allow_replacement) const noexcept |
+| |
+|
+simdjson_inline simdjson_warn_unused simdjson_result< std::string_view > | unescape_wobbly (SIMDJSON_IMPLEMENTATION::ondemand::json_iterator &iter) const noexcept |
+| |
|
simdjson_inline | implementation_simdjson_result_base () noexcept=default |
@@ -175,7 +178,7 @@ Additional Inherited Members
-
Definition at line 177 of file raw_json_string.h.
+
Definition at line 190 of file raw_json_string.h.
The documentation for this struct was generated from the following files:
- include/simdjson/generic/ondemand/raw_json_string.h
- include/simdjson/generic/ondemand/raw_json_string-inl.h
diff --git a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.js b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.js
index 8ac1537a5..f2a3f2e52 100644
--- a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.js
+++ b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.js
@@ -2,5 +2,6 @@ var structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_
[
[ "simdjson_result", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html#a8f2b2692aa9a494d63d17acc818023d5", null ],
[ "raw", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html#af320d3d4d980f92005c56a48be336339", null ],
- [ "unescape", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html#ab025cd6b344dc3dd6673b42663976de3", null ]
+ [ "unescape", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html#a0ae75b318136f0dfa4acb2e0cc4fd94b", null ],
+ [ "unescape_wobbly", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1raw__json__string_01_4.html#ae38fe1a0dff73175c6edc85c36d481a8", null ]
];
\ No newline at end of file
diff --git a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4-members.html b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4-members.html
index a4aba4635..0809f2b09 100644
--- a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4-members.html
+++ b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4-members.html
@@ -123,39 +123,40 @@ $(document).ready(function(){initNavTree('structsimdjson_1_1simdjson__result_3_0
| get_number_type() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
| get_object() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
| get_raw_json_string() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | get_string() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | get_string(bool allow_replacement=false) noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
| get_uint64() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
| get_uint64_in_string() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | implementation_simdjson_result_base() noexcept=default | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | implementation_simdjson_result_base(error_code error) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | implementation_simdjson_result_base(SIMDJSON_IMPLEMENTATION::ondemand::value &&value) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | implementation_simdjson_result_base(SIMDJSON_IMPLEMENTATION::ondemand::value &&value, error_code error) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | is_integer() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | is_negative() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | is_null() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | is_scalar() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | operator bool() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | operator double() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | operator int64_t() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | operator SIMDJSON_IMPLEMENTATION::ondemand::array() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | operator SIMDJSON_IMPLEMENTATION::ondemand::object() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | operator SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | operator SIMDJSON_IMPLEMENTATION::ondemand::value &&() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | operator std::string_view() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | operator uint64_t() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | operator[](std::string_view key) noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | operator[](const char *key) noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | raw_json_token() noexcept | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | second | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | protected |
- | simdjson_result() noexcept=default (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | take_value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | tie(SIMDJSON_IMPLEMENTATION::ondemand::value &value, error_code &error) &&noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | type() noexcept | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | value() &noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | value_unsafe() const &noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | value_unsafe() &noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
- | value_unsafe() &&noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | get_wobbly_string() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | implementation_simdjson_result_base() noexcept=default | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | implementation_simdjson_result_base(error_code error) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | implementation_simdjson_result_base(SIMDJSON_IMPLEMENTATION::ondemand::value &&value) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | implementation_simdjson_result_base(SIMDJSON_IMPLEMENTATION::ondemand::value &&value, error_code error) noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | is_integer() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | is_negative() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | is_null() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | is_scalar() noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | operator bool() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | operator double() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | operator int64_t() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | operator SIMDJSON_IMPLEMENTATION::ondemand::array() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | operator SIMDJSON_IMPLEMENTATION::ondemand::object() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | operator SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | operator SIMDJSON_IMPLEMENTATION::ondemand::value &&() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | operator std::string_view() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | operator uint64_t() noexcept(false) (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | operator[](std::string_view key) noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | operator[](const char *key) noexcept (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | raw_json_token() noexcept | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | second | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | protected |
+ | simdjson_result() noexcept=default (defined in simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value >) | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | take_value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | tie(SIMDJSON_IMPLEMENTATION::ondemand::value &value, error_code &error) &&noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | type() noexcept | simdjson::simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | value() &noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | value() &&noexcept(false) | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | value_unsafe() const &noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | value_unsafe() &noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
+ | value_unsafe() &&noexcept | simdjson::SIMDJSON_IMPLEMENTATION::implementation_simdjson_result_base< SIMDJSON_IMPLEMENTATION::ondemand::value > | |
diff --git a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html
index c0762a8ca..d8d64b451 100644
--- a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html
+++ b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html
@@ -130,9 +130,12 @@ simdjson_inline sim
|
simdjson_inline simdjson_result< double > | get_double_in_string () noexcept |
| |
-|
-simdjson_inline simdjson_result< std::string_view > | get_string () noexcept |
-| |
+|
+simdjson_inline simdjson_result< std::string_view > | get_string (bool allow_replacement=false) noexcept |
+| |
+|
+simdjson_inline simdjson_result< std::string_view > | get_wobbly_string () noexcept |
+| |
|
simdjson_inline simdjson_result< SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string > | get_raw_json_string () noexcept |
| |
@@ -308,7 +311,7 @@ Additional Inherited Members
-
Definition at line 573 of file value.h.
+
Definition at line 588 of file value.h.
◆ current_depth()
@@ -336,7 +339,7 @@ Additional Inherited Members
int32_t current_depth() const noexcept
int32_t current_depth() const noexcept
-Definition at line 406 of file value-inl.h.
+Definition at line 413 of file value-inl.h.
@@ -366,7 +369,7 @@ Additional Inherited Members
simdjson_result<const char *> current_location() noexcept
simdjson_result<const char *> current_location() noexcept
-Definition at line 401 of file value-inl.h.
+Definition at line 408 of file value-inl.h.
@@ -412,7 +415,7 @@ Additional Inherited Members
- Returns
- The value of the field, or NO_SUCH_FIELD if the field is not in the object.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
-Definition at line 242 of file value-inl.h.
+Definition at line 245 of file value-inl.h.
@@ -453,7 +456,7 @@ Additional Inherited Members
- Returns
- The value of the field, or NO_SUCH_FIELD if the field is not in the object.
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
-Definition at line 251 of file value-inl.h.
+Definition at line 254 of file value-inl.h.
@@ -483,7 +486,7 @@ Additional Inherited Members
std::string_view value::raw_json_token() const noexcept
std::string_view value::raw_json_token() const noexcept
-Definition at line 396 of file value-inl.h.
+Definition at line 403 of file value-inl.h.
@@ -513,7 +516,7 @@ Additional Inherited Members
Get the type of this JSON value.
NOTE: If you're only expecting a value to be one type (a typical case), it's generally better to just call .get_double, .get_string, etc. and check for INCORRECT_TYPE (or just let it throw an exception).
-Definition at line 337 of file value-inl.h.
+Definition at line 344 of file value-inl.h.
diff --git a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.js b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.js
index c2212a471..d8069998b 100644
--- a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.js
+++ b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.js
@@ -27,9 +27,10 @@ var structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_
[ "get_number_type", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#aba88c6ad5572d416b7f24f8a74782d99", null ],
[ "get_object", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#af7ff134d2ada5aae0a95f12bbfd7f088", null ],
[ "get_raw_json_string", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#ad496791bbbd9af86d1998d474e2d9298", null ],
- [ "get_string", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a917d384192b2376c35edb592ad7971c7", null ],
+ [ "get_string", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a75f550801092d5c38f48308b03b7f3ba", null ],
[ "get_uint64", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a578f245708437fd332e5bc24a7e12ca8", null ],
[ "get_uint64_in_string", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a91b6b30ac6e4f38ecae22280ec85f9ec", null ],
+ [ "get_wobbly_string", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a002c69d18a432b46e99c2579192f00a8", null ],
[ "is_integer", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#aeffc73bee92f56bd2d7a00b2b7bb20cd", null ],
[ "is_negative", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a07c7e0c3076b3882e4b146a008955772", null ],
[ "is_null", "structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value_01_4.html#a55e9130ee895592cdcf7a2fe6767d95c", null ],
diff --git a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value__iterator_01_4.html b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value__iterator_01_4.html
index 3bd171eb4..893186871 100644
--- a/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value__iterator_01_4.html
+++ b/structsimdjson_1_1simdjson__result_3_01_s_i_m_d_j_s_o_n___i_m_p_l_e_m_e_n_t_a_t_i_o_n_1_1ondemand_1_1value__iterator_01_4.html
@@ -165,7 +165,7 @@ SIMDJSON_IMPLEMENTATION::ondemand::value_iterator
- Definition at line 460 of file value_iterator.h.
+ Definition at line 462 of file value_iterator.h.
The documentation for this struct was generated from the following files:
- include/simdjson/generic/ondemand/value_iterator.h
- include/simdjson/generic/ondemand/value_iterator-inl.h
diff --git a/value-inl_8h_source.html b/value-inl_8h_source.html
index b70e72194..025ae0687 100644
--- a/value-inl_8h_source.html
+++ b/value-inl_8h_source.html
@@ -123,429 +123,437 @@ $(document).ready(function(){initNavTree('value-inl_8h_source.html',''); initRes
31 return iter.get_raw_json_string();
-
- 34 return iter.get_string();
+
+ 34 return iter.get_string(allow_replacement);
-
- 37 return iter.get_double();
+
+ 37 return iter.get_wobbly_string();
-
- 40 return iter.get_double_in_string();
+
+ 40 return iter.get_double();
-
- 43 return iter.get_uint64();
+
+ 43 return iter.get_double_in_string();
-
- 46 return iter.get_uint64_in_string();
+
+ 46 return iter.get_uint64();
-
- 49 return iter.get_int64();
+
+ 49 return iter.get_uint64_in_string();
-
- 52 return iter.get_int64_in_string();
+
+ 52 return iter.get_int64();
-
- 55 return iter.get_bool();
+
+ 55 return iter.get_int64_in_string();
-
- 58 return iter.is_null();
+
+ 58 return iter.get_bool();
-
-
-
- 63 template<> simdjson_inline simdjson_result<std::string_view> value::get() noexcept { return get_string(); }
- 64 template<> simdjson_inline simdjson_result<number> value::get() noexcept { return get_number(); }
- 65 template<> simdjson_inline simdjson_result<double> value::get() noexcept { return get_double(); }
- 66 template<> simdjson_inline simdjson_result<uint64_t> value::get() noexcept { return get_uint64(); }
- 67 template<> simdjson_inline simdjson_result<int64_t> value::get() noexcept { return get_int64(); }
- 68 template<> simdjson_inline simdjson_result<bool> value::get() noexcept { return get_bool(); }
-
-
- 71 return get<T>().get(out);
-
-
- 74 #if SIMDJSON_EXCEPTIONS
- 75 simdjson_inline value::operator array() noexcept(false) {
-
-
- 78 simdjson_inline value::operator object() noexcept(false) {
-
+
+ 61 return iter.is_null();
+
+
+
+
+ 66 template<> simdjson_inline simdjson_result<std::string_view> value::get() noexcept { return get_string( false); }
+ 67 template<> simdjson_inline simdjson_result<number> value::get() noexcept { return get_number(); }
+ 68 template<> simdjson_inline simdjson_result<double> value::get() noexcept { return get_double(); }
+ 69 template<> simdjson_inline simdjson_result<uint64_t> value::get() noexcept { return get_uint64(); }
+ 70 template<> simdjson_inline simdjson_result<int64_t> value::get() noexcept { return get_int64(); }
+ 71 template<> simdjson_inline simdjson_result<bool> value::get() noexcept { return get_bool(); }
+
+
+ 74 return get<T>().get(out);
+
+
+ 77 #if SIMDJSON_EXCEPTIONS
+ 78 simdjson_inline value::operator array() noexcept(false) {
+
- 81 simdjson_inline value::operator uint64_t() noexcept(false) {
-
+ 81 simdjson_inline value::operator object() noexcept(false) {
+
- 84 simdjson_inline value::operator int64_t() noexcept(false) {
-
+ 84 simdjson_inline value::operator uint64_t() noexcept(false) {
+
- 87 simdjson_inline value::operator double() noexcept(false) {
-
+ 87 simdjson_inline value::operator int64_t() noexcept(false) {
+
- 90 simdjson_inline value::operator std::string_view() noexcept(false) {
-
+ 90 simdjson_inline value::operator double() noexcept(false) {
+
-
- 94 return get_raw_json_string();
+ 93 simdjson_inline value::operator std::string_view() noexcept(false) {
+ 94 return get_string( false);
- 96 simdjson_inline value::operator bool() noexcept(false) {
-
+
+ 97 return get_raw_json_string();
-
-
-
- 102 return get_array().begin();
-
-
-
+ 99 simdjson_inline value::operator bool() noexcept(false) {
+
+
+
+
+
+ 105 return get_array().begin();
-
-
- 109 auto a = get_array();
- 110 answer = a.count_elements();
-
-
-
- 114 iter.move_at_start();
-
-
-
-
- 119 auto a = get_object();
- 120 answer = a.count_fields();
- 121 iter.move_at_start();
-
-
-
- 125 auto a = get_array();
-
-
-
-
- 130 return start_or_resume_object().find_field(key);
-
-
+
+
+
+
+
+ 112 auto a = get_array();
+ 113 answer = a.count_elements();
+
+
+
+ 117 iter.move_at_start();
+
+
+
+
+ 122 auto a = get_object();
+ 123 answer = a.count_fields();
+ 124 iter.move_at_start();
+
+
+
+ 128 auto a = get_array();
+
+
+
+
133 return start_or_resume_object().find_field(key);
-
-
- 137 return start_or_resume_object().find_field_unordered(key);
-
-
+
+ 136 return start_or_resume_object().find_field(key);
+
+
+
140 return start_or_resume_object().find_field_unordered(key);
-
-
- 144 return start_or_resume_object()[key];
-
-
+
+ 143 return start_or_resume_object().find_field_unordered(key);
+
+
+
147 return start_or_resume_object()[key];
-
-
-
-
-
-
-
- 156 auto error = type().get(this_type);
- 157 if(error) { return error; }
-
-
-
-
- 162 return iter.is_negative();
-
-
-
- 166 return iter.is_integer();
-
-
- 169 return iter.get_number_type();
+
+ 150 return start_or_resume_object()[key];
+
+
+
+
+
+
+
+
+ 159 auto error = type().get(this_type);
+ 160 if(error) { return error; }
+
+
+
+
+ 165 return iter.is_negative();
+
+
+
+ 169 return iter.is_integer();
-
- 172 return iter.get_number();
+
+ 172 return iter.get_number_type();
-
-
- 176 return std::string_view( reinterpret_cast<const char* >(iter.peek_start()), iter.peek_start_length());
-
-
-
- 180 return iter.json_iter().current_location();
-
-
-
- 184 return iter.json_iter().depth();
-
-
-
-
- 189 SIMDJSON_TRY(type().get(t));
-
-
-
- 193 return (*this).get_array().at_pointer(json_pointer);
-
- 195 return (*this).get_object().at_pointer(json_pointer);
-
-
-
-
-
-
-
-
-
-
-
- 207 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::simdjson_result(
- 208 SIMDJSON_IMPLEMENTATION::ondemand::value &&value
-
- 210 implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::value>(
- 211 std::forward<SIMDJSON_IMPLEMENTATION::ondemand::value>(value)
-
-
-
- 215 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::simdjson_result(
-
-
- 218 implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::value>(error)
-
-
- 221 simdjson_inline simdjson_result<size_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::count_elements() & noexcept {
- 222 if (error()) { return error(); }
- 223 return first.count_elements();
-
- 225 simdjson_inline simdjson_result<size_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::count_fields() & noexcept {
- 226 if (error()) { return error(); }
- 227 return first.count_fields();
-
- 229 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::at( size_t index) noexcept {
- 230 if (error()) { return error(); }
- 231 return first.at(index);
-
- 233 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array_iterator> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::begin() & noexcept {
- 234 if (error()) { return error(); }
- 235 return first.begin();
-
- 237 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array_iterator> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::end() & noexcept {
- 238 if (error()) { return error(); }
-
-
-
-
- 243 if (error()) { return error(); }
- 244 return first.find_field(key);
-
-
- 247 if (error()) { return error(); }
- 248 return first.find_field(key);
-
-
-
- 252 if (error()) { return error(); }
- 253 return first.find_field_unordered(key);
-
-
- 256 if (error()) { return error(); }
- 257 return first.find_field_unordered(key);
-
-
- 260 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator[](std::string_view key) noexcept {
- 261 if (error()) { return error(); }
-
-
- 264 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator[]( const char *key) noexcept {
- 265 if (error()) { return error(); }
-
-
-
- 269 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_array() noexcept {
-
- 271 return first.get_array();
-
- 273 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::object> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_object() noexcept {
-
- 275 return first.get_object();
-
- 277 simdjson_inline simdjson_result<uint64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_uint64() noexcept {
-
- 279 return first.get_uint64();
-
- 281 simdjson_inline simdjson_result<uint64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_uint64_in_string() noexcept {
-
- 283 return first.get_uint64_in_string();
-
- 285 simdjson_inline simdjson_result<int64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_int64() noexcept {
-
- 287 return first.get_int64();
-
- 289 simdjson_inline simdjson_result<int64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_int64_in_string() noexcept {
-
- 291 return first.get_int64_in_string();
-
- 293 simdjson_inline simdjson_result<double> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_double() noexcept {
-
- 295 return first.get_double();
-
- 297 simdjson_inline simdjson_result<double> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_double_in_string() noexcept {
-
- 299 return first.get_double_in_string();
-
- 301 simdjson_inline simdjson_result<std::string_view> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_string() noexcept {
-
- 303 return first.get_string();
-
- 305 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_raw_json_string() noexcept {
-
- 307 return first.get_raw_json_string();
-
- 309 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_bool() noexcept {
-
- 311 return first.get_bool();
-
- 313 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::is_null() noexcept {
-
- 315 return first.is_null();
-
-
-
-
- 320 return first.get<T>();
-
-
- 323 if (error()) { return error(); }
- 324 return first.get<T>(out);
-
-
- 327 template<> simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get<SIMDJSON_IMPLEMENTATION::ondemand::value>() noexcept {
- 328 if (error()) { return error(); }
- 329 return std::move(first);
-
- 331 template<> simdjson_inline error_code simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get<SIMDJSON_IMPLEMENTATION::ondemand::value>(SIMDJSON_IMPLEMENTATION::ondemand::value &out) noexcept {
- 332 if (error()) { return error(); }
-
-
-
-
-
-
-
-
-
-
- 343 return first.is_scalar();
-
- 345 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::is_negative() noexcept {
-
- 347 return first.is_negative();
-
- 349 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::is_integer() noexcept {
-
- 351 return first.is_integer();
-
- 353 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::number_type> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_number_type() noexcept {
-
- 355 return first.get_number_type();
-
- 357 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::number> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_number() noexcept {
-
- 359 return first.get_number();
-
- 361 #if SIMDJSON_EXCEPTIONS
- 362 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator SIMDJSON_IMPLEMENTATION::ondemand::array() noexcept(false) {
- 363 if (error()) { throw simdjson_error(error()); }
-
-
- 366 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator SIMDJSON_IMPLEMENTATION::ondemand::object() noexcept(false) {
- 367 if (error()) { throw simdjson_error(error()); }
-
-
- 370 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator uint64_t() noexcept(false) {
- 371 if (error()) { throw simdjson_error(error()); }
-
-
- 374 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator int64_t() noexcept(false) {
- 375 if (error()) { throw simdjson_error(error()); }
-
-
- 378 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator double() noexcept(false) {
- 379 if (error()) { throw simdjson_error(error()); }
-
-
- 382 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator std::string_view() noexcept(false) {
- 383 if (error()) { throw simdjson_error(error()); }
-
-
- 386 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string() noexcept(false) {
- 387 if (error()) { throw simdjson_error(error()); }
-
-
- 390 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator bool() noexcept(false) {
- 391 if (error()) { throw simdjson_error(error()); }
-
-
-
-
-
-
- 398 return first.raw_json_token();
-
-
-
-
- 403 return first.current_location();
-
-
-
-
- 408 return first.current_depth();
-
-
-
- 412 if (error()) { return error(); }
- 413 return first.at_pointer(json_pointer);
-
-
-
+
+ 175 return iter.get_number();
+
+
+
+ 179 return std::string_view( reinterpret_cast<const char* >(iter.peek_start()), iter.peek_start_length());
+
+
+
+ 183 return iter.json_iter().current_location();
+
+
+
+ 187 return iter.json_iter().depth();
+
+
+
+
+ 192 SIMDJSON_TRY(type().get(t));
+
+
+
+ 196 return (*this).get_array().at_pointer(json_pointer);
+
+ 198 return (*this).get_object().at_pointer(json_pointer);
+
+
+
+
+
+
+
+
+
+
+
+ 210 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::simdjson_result(
+ 211 SIMDJSON_IMPLEMENTATION::ondemand::value &&value
+
+ 213 implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::value>(
+ 214 std::forward<SIMDJSON_IMPLEMENTATION::ondemand::value>(value)
+
+
+
+ 218 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::simdjson_result(
+
+
+ 221 implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::value>(error)
+
+
+ 224 simdjson_inline simdjson_result<size_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::count_elements() & noexcept {
+ 225 if (error()) { return error(); }
+ 226 return first.count_elements();
+
+ 228 simdjson_inline simdjson_result<size_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::count_fields() & noexcept {
+ 229 if (error()) { return error(); }
+ 230 return first.count_fields();
+
+ 232 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::at( size_t index) noexcept {
+ 233 if (error()) { return error(); }
+ 234 return first.at(index);
+
+ 236 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array_iterator> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::begin() & noexcept {
+ 237 if (error()) { return error(); }
+ 238 return first.begin();
+
+ 240 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array_iterator> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::end() & noexcept {
+ 241 if (error()) { return error(); }
+
+
+
+
+ 246 if (error()) { return error(); }
+ 247 return first.find_field(key);
+
+
+ 250 if (error()) { return error(); }
+ 251 return first.find_field(key);
+
+
+
+ 255 if (error()) { return error(); }
+ 256 return first.find_field_unordered(key);
+
+
+ 259 if (error()) { return error(); }
+ 260 return first.find_field_unordered(key);
+
+
+ 263 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator[](std::string_view key) noexcept {
+ 264 if (error()) { return error(); }
+
+
+ 267 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator[]( const char *key) noexcept {
+ 268 if (error()) { return error(); }
+
+
+
+ 272 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::array> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_array() noexcept {
+
+ 274 return first.get_array();
+
+ 276 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::object> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_object() noexcept {
+
+ 278 return first.get_object();
+
+ 280 simdjson_inline simdjson_result<uint64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_uint64() noexcept {
+
+ 282 return first.get_uint64();
+
+ 284 simdjson_inline simdjson_result<uint64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_uint64_in_string() noexcept {
+
+ 286 return first.get_uint64_in_string();
+
+ 288 simdjson_inline simdjson_result<int64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_int64() noexcept {
+
+ 290 return first.get_int64();
+
+ 292 simdjson_inline simdjson_result<int64_t> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_int64_in_string() noexcept {
+
+ 294 return first.get_int64_in_string();
+
+ 296 simdjson_inline simdjson_result<double> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_double() noexcept {
+
+ 298 return first.get_double();
+
+ 300 simdjson_inline simdjson_result<double> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_double_in_string() noexcept {
+
+ 302 return first.get_double_in_string();
+
+ 304 simdjson_inline simdjson_result<std::string_view> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_string( bool allow_replacement) noexcept {
+ 305 if (error()) { return error(); }
+ 306 return first.get_string(allow_replacement);
+
+ 308 simdjson_inline simdjson_result<std::string_view> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_wobbly_string() noexcept {
+
+ 310 return first.get_wobbly_string();
+
+ 312 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_raw_json_string() noexcept {
+
+ 314 return first.get_raw_json_string();
+
+ 316 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_bool() noexcept {
+
+ 318 return first.get_bool();
+
+ 320 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::is_null() noexcept {
+
+ 322 return first.is_null();
+
+
+
+
+ 327 return first.get<T>();
+
+
+ 330 if (error()) { return error(); }
+ 331 return first.get<T>(out);
+
+
+ 334 template<> simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get<SIMDJSON_IMPLEMENTATION::ondemand::value>() noexcept {
+ 335 if (error()) { return error(); }
+ 336 return std::move(first);
+
+ 338 template<> simdjson_inline error_code simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get<SIMDJSON_IMPLEMENTATION::ondemand::value>(SIMDJSON_IMPLEMENTATION::ondemand::value &out) noexcept {
+ 339 if (error()) { return error(); }
+
+
+
+
+
+
+
+
+
+
+ 350 return first.is_scalar();
+
+ 352 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::is_negative() noexcept {
+
+ 354 return first.is_negative();
+
+ 356 simdjson_inline simdjson_result<bool> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::is_integer() noexcept {
+
+ 358 return first.is_integer();
+
+ 360 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::number_type> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_number_type() noexcept {
+
+ 362 return first.get_number_type();
+
+ 364 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::number> simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::get_number() noexcept {
+
+ 366 return first.get_number();
+
+ 368 #if SIMDJSON_EXCEPTIONS
+ 369 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator SIMDJSON_IMPLEMENTATION::ondemand::array() noexcept(false) {
+ 370 if (error()) { throw simdjson_error(error()); }
+
+
+ 373 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator SIMDJSON_IMPLEMENTATION::ondemand::object() noexcept(false) {
+ 374 if (error()) { throw simdjson_error(error()); }
+
+
+ 377 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator uint64_t() noexcept(false) {
+ 378 if (error()) { throw simdjson_error(error()); }
+
+
+ 381 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator int64_t() noexcept(false) {
+ 382 if (error()) { throw simdjson_error(error()); }
+
+
+ 385 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator double() noexcept(false) {
+ 386 if (error()) { throw simdjson_error(error()); }
+
+
+ 389 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator std::string_view() noexcept(false) {
+ 390 if (error()) { throw simdjson_error(error()); }
+
+
+ 393 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator SIMDJSON_IMPLEMENTATION::ondemand::raw_json_string() noexcept(false) {
+ 394 if (error()) { throw simdjson_error(error()); }
+
+
+ 397 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value>::operator bool() noexcept(false) {
+ 398 if (error()) { throw simdjson_error(error()); }
+
+
+
+
+
+
+ 405 return first.raw_json_token();
+
+
+
+
+ 410 return first.current_location();
+
+
+
+
+ 415 return first.current_depth();
+
+
+
+ 419 if (error()) { return error(); }
+ 420 return first.at_pointer(json_pointer);
+
+
+
A forward-only JSON array.
static simdjson_inline simdjson_result< array > start(value_iterator &iter) noexcept Begin array iteration.
A forward-only JSON object field iterator.
A string escaped per JSON rules, terminated with quote (").
An ephemeral JSON value returned during iteration.
static simdjson_inline value start(const value_iterator &iter) noexcept Start a value at the current position.
-simdjson_inline simdjson_result< bool > is_null() noexcept Checks if this JSON value is null.
-simdjson_inline simdjson_result< const char * > current_location() noexcept Returns the current location in the document if in bounds.
-simdjson_inline simdjson_result< value > find_field(std::string_view key) noexcept Look up a field by name on an object (order-sensitive).
-simdjson_inline bool is_negative() noexcept Checks whether the value is a negative number.
-simdjson_inline simdjson_result< number_type > get_number_type() noexcept Determine the number type (integer or floating-point number) as quickly as possible.
+simdjson_inline simdjson_result< bool > is_null() noexcept Checks if this JSON value is null.
+simdjson_inline simdjson_result< const char * > current_location() noexcept Returns the current location in the document if in bounds.
+simdjson_inline simdjson_result< value > find_field(std::string_view key) noexcept Look up a field by name on an object (order-sensitive).
+simdjson_inline bool is_negative() noexcept Checks whether the value is a negative number.
+simdjson_inline simdjson_result< number_type > get_number_type() noexcept Determine the number type (integer or floating-point number) as quickly as possible.
simdjson_inline simdjson_result< array > get_array() noexcept Cast this JSON value to an array.
-simdjson_inline std::string_view raw_json_token() noexcept Get the raw JSON for this token.
+simdjson_inline std::string_view raw_json_token() noexcept Get the raw JSON for this token.
simdjson_inline simdjson_result< object > get_object() noexcept Cast this JSON value to an object.
-simdjson_inline simdjson_result< size_t > count_elements() &noexcept This method scans the array and counts the number of elements.
-simdjson_inline simdjson_result< int64_t > get_int64_in_string() noexcept Cast this JSON value (inside string) to a signed integer.
-simdjson_inline simdjson_result< size_t > count_fields() &noexcept This method scans the object and counts the number of key-value pairs.
-simdjson_inline simdjson_result< bool > is_integer() noexcept Checks whether the value is an integer number.
-simdjson_inline simdjson_result< array_iterator > end() &noexcept Sentinel representing the end of the array.
+simdjson_inline simdjson_result< size_t > count_elements() &noexcept This method scans the array and counts the number of elements.
+simdjson_inline simdjson_result< int64_t > get_int64_in_string() noexcept Cast this JSON value (inside string) to a signed integer.
+simdjson_inline simdjson_result< size_t > count_fields() &noexcept This method scans the object and counts the number of key-value pairs.
+simdjson_inline simdjson_result< bool > is_integer() noexcept Checks whether the value is an integer number.
+simdjson_inline simdjson_result< array_iterator > end() &noexcept Sentinel representing the end of the array.
simdjson_inline simdjson_result< object > start_or_resume_object() noexcept Get the object, starting or resuming it as necessary.
-simdjson_inline simdjson_result< array_iterator > begin() &noexcept Begin array iteration.
-simdjson_inline simdjson_result< uint64_t > get_uint64_in_string() noexcept Cast this JSON value (inside string) to a unsigned integer.
-simdjson_inline int32_t current_depth() const noexcept Returns the current depth in the document if in bounds.
-simdjson_inline simdjson_result< bool > is_scalar() noexcept Checks whether the value is a scalar (string, number, null, Boolean).
+simdjson_inline simdjson_result< array_iterator > begin() &noexcept Begin array iteration.
+simdjson_inline simdjson_result< uint64_t > get_uint64_in_string() noexcept Cast this JSON value (inside string) to a unsigned integer.
+simdjson_inline int32_t current_depth() const noexcept Returns the current depth in the document if in bounds.
+simdjson_inline simdjson_result< bool > is_scalar() noexcept Checks whether the value is a scalar (string, number, null, Boolean).
simdjson_inline simdjson_result< T > get() noexcept Get this value as the given type.
-simdjson_inline simdjson_result< std::string_view > get_string() noexcept Cast this JSON value to a string.
static simdjson_inline value resume(const value_iterator &iter) noexcept Resume a value.
-simdjson_inline simdjson_result< double > get_double() noexcept Cast this JSON value to a double.
-simdjson_inline simdjson_result< bool > get_bool() noexcept Cast this JSON value to a bool.
-simdjson_warn_unused simdjson_inline simdjson_result< number > get_number() noexcept Attempt to parse an ondemand::number.
-simdjson_inline simdjson_result< value > at_pointer(std::string_view json_pointer) noexcept Get the value associated with the given JSON pointer.
-simdjson_inline simdjson_result< int64_t > get_int64() noexcept Cast this JSON value to a signed integer.
+simdjson_inline simdjson_result< double > get_double() noexcept Cast this JSON value to a double.
+simdjson_inline simdjson_result< std::string_view > get_string(bool allow_replacement=false) noexcept Cast this JSON value to a string.
+simdjson_inline simdjson_result< bool > get_bool() noexcept Cast this JSON value to a bool.
+simdjson_warn_unused simdjson_inline simdjson_result< number > get_number() noexcept Attempt to parse an ondemand::number.
+simdjson_inline simdjson_result< value > at_pointer(std::string_view json_pointer) noexcept Get the value associated with the given JSON pointer.
+simdjson_inline simdjson_result< std::string_view > get_wobbly_string() noexcept Cast this JSON value to a "wobbly" string.
+simdjson_inline simdjson_result< int64_t > get_int64() noexcept Cast this JSON value to a signed integer.
simdjson_inline value() noexcept=default Create a new invalid value.
-simdjson_inline simdjson_result< json_type > type() noexcept Get the type of this JSON value.
-simdjson_inline simdjson_result< double > get_double_in_string() noexcept Cast this JSON value (inside string) to a double.
+simdjson_inline simdjson_result< json_type > type() noexcept Get the type of this JSON value.
+simdjson_inline simdjson_result< double > get_double_in_string() noexcept Cast this JSON value (inside string) to a double.
simdjson_inline simdjson_result< raw_json_string > get_raw_json_string() noexcept Cast this JSON value to a raw_json_string.
-simdjson_inline simdjson_result< value > find_field_unordered(std::string_view key) noexcept Look up a field by name on an object, without regard to key order.
-simdjson_inline simdjson_result< value > at(size_t index) noexcept Get the value at the given index in the array.
-simdjson_inline simdjson_result< uint64_t > get_uint64() noexcept Cast this JSON value to an unsigned integer.
+simdjson_inline simdjson_result< value > find_field_unordered(std::string_view key) noexcept Look up a field by name on an object, without regard to key order.
+simdjson_inline simdjson_result< value > at(size_t index) noexcept Get the value at the given index in the array.
+simdjson_inline simdjson_result< uint64_t > get_uint64() noexcept Cast this JSON value to an unsigned integer.
json_type The type of a JSON value.
@ object A JSON object ( { "a": 1, "b" 2, ... } )
@ array A JSON array ( [ 1, 2, 3 ... ] )
@@ -554,7 +562,7 @@ $(document).ready(function(){initNavTree('value-inl_8h_source.html',''); initRes
@ INVALID_JSON_POINTER Invalid JSON pointer reference.
-
+
The result of a simdjson operation that could fail.
simdjson_inline error_code error() const noexcept The error.
simdjson_warn_unused simdjson_inline error_code get(T &value) &&noexcept Move the value to the provided variable.
diff --git a/value_8h_source.html b/value_8h_source.html
index b6d42ccc4..6acc1d4dd 100644
--- a/value_8h_source.html
+++ b/value_8h_source.html
@@ -131,151 +131,154 @@ $(document).ready(function(){initNavTree('value_8h_source.html',''); initResizab
-
+
-
-
-
-
-
-
- 162 #if SIMDJSON_EXCEPTIONS
- 169 simdjson_inline operator array() noexcept(false);
- 176 simdjson_inline operator object() noexcept(false);
- 183 simdjson_inline operator uint64_t() noexcept(false);
- 190 simdjson_inline operator int64_t() noexcept(false);
- 197 simdjson_inline operator double() noexcept(false);
- 209 simdjson_inline operator std::string_view() noexcept(false);
-
- 225 simdjson_inline operator bool() noexcept(false);
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+ 177 #if SIMDJSON_EXCEPTIONS
+ 184 simdjson_inline operator array() noexcept(false);
+ 191 simdjson_inline operator object() noexcept(false);
+ 198 simdjson_inline operator uint64_t() noexcept(false);
+ 205 simdjson_inline operator int64_t() noexcept(false);
+ 212 simdjson_inline operator double() noexcept(false);
+ 224 simdjson_inline operator std::string_view() noexcept(false);
+
+ 240 simdjson_inline operator bool() noexcept(false);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 529 simdjson_inline value(const value_iterator &iter) noexcept;
-
- 534 simdjson_inline void skip() noexcept;
-
- 541 static simdjson_inline value start(const value_iterator &iter) noexcept;
-
- 546 static simdjson_inline value resume(const value_iterator &iter) noexcept;
-
-
-
-
-
-
- 556 value_iterator iter{};
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 544 simdjson_inline value(const value_iterator &iter) noexcept;
+
+ 549 simdjson_inline void skip() noexcept;
+
+ 556 static simdjson_inline value start(const value_iterator &iter) noexcept;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- 595 template< typename T> simdjson_inline error_code get(T &out) noexcept;
+ 561 static simdjson_inline value resume(const value_iterator &iter) noexcept;
+
+
+
+
+
+
+ 571 value_iterator iter{};
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
- 597 #if SIMDJSON_EXCEPTIONS
-
-
- 600 simdjson_inline operator uint64_t() noexcept( false);
- 601 simdjson_inline operator int64_t() noexcept( false);
- 602 simdjson_inline operator double() noexcept( false);
- 603 simdjson_inline operator std::string_view() noexcept( false);
-
- 605 simdjson_inline operator bool() noexcept( false);
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 611 template< typename T> simdjson_inline error_code get(T &out) noexcept;
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 613 #if SIMDJSON_EXCEPTIONS
+
+
+ 616 simdjson_inline operator uint64_t() noexcept( false);
+ 617 simdjson_inline operator int64_t() noexcept( false);
+ 618 simdjson_inline operator double() noexcept( false);
+ 619 simdjson_inline operator std::string_view() noexcept( false);
+
+ 621 simdjson_inline operator bool() noexcept( false);
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
A forward-only JSON array.
A forward-only JSON array.
@@ -284,39 +287,40 @@ $(document).ready(function(){initNavTree('value_8h_source.html',''); initResizab
A string escaped per JSON rules, terminated with quote (").
An ephemeral JSON value returned during iteration.
static simdjson_inline value start(const value_iterator &iter) noexcept Start a value at the current position.
-simdjson_inline simdjson_result< bool > is_null() noexcept Checks if this JSON value is null.
-simdjson_inline simdjson_result< const char * > current_location() noexcept Returns the current location in the document if in bounds.
-simdjson_inline simdjson_result< value > find_field(std::string_view key) noexcept Look up a field by name on an object (order-sensitive).
-simdjson_inline bool is_negative() noexcept Checks whether the value is a negative number.
-simdjson_inline simdjson_result< number_type > get_number_type() noexcept Determine the number type (integer or floating-point number) as quickly as possible.
+simdjson_inline simdjson_result< bool > is_null() noexcept Checks if this JSON value is null.
+simdjson_inline simdjson_result< const char * > current_location() noexcept Returns the current location in the document if in bounds.
+simdjson_inline simdjson_result< value > find_field(std::string_view key) noexcept Look up a field by name on an object (order-sensitive).
+simdjson_inline bool is_negative() noexcept Checks whether the value is a negative number.
+simdjson_inline simdjson_result< number_type > get_number_type() noexcept Determine the number type (integer or floating-point number) as quickly as possible.
simdjson_inline simdjson_result< array > get_array() noexcept Cast this JSON value to an array.
-simdjson_inline std::string_view raw_json_token() noexcept Get the raw JSON for this token.
+simdjson_inline std::string_view raw_json_token() noexcept Get the raw JSON for this token.
simdjson_inline simdjson_result< object > get_object() noexcept Cast this JSON value to an object.
-simdjson_inline simdjson_result< size_t > count_elements() &noexcept This method scans the array and counts the number of elements.
-simdjson_inline simdjson_result< int64_t > get_int64_in_string() noexcept Cast this JSON value (inside string) to a signed integer.
-simdjson_inline simdjson_result< size_t > count_fields() &noexcept This method scans the object and counts the number of key-value pairs.
-simdjson_inline simdjson_result< bool > is_integer() noexcept Checks whether the value is an integer number.
-simdjson_inline simdjson_result< array_iterator > end() &noexcept Sentinel representing the end of the array.
+simdjson_inline simdjson_result< size_t > count_elements() &noexcept This method scans the array and counts the number of elements.
+simdjson_inline simdjson_result< int64_t > get_int64_in_string() noexcept Cast this JSON value (inside string) to a signed integer.
+simdjson_inline simdjson_result< size_t > count_fields() &noexcept This method scans the object and counts the number of key-value pairs.
+simdjson_inline simdjson_result< bool > is_integer() noexcept Checks whether the value is an integer number.
+simdjson_inline simdjson_result< array_iterator > end() &noexcept Sentinel representing the end of the array.
simdjson_inline simdjson_result< object > start_or_resume_object() noexcept Get the object, starting or resuming it as necessary.
-simdjson_inline simdjson_result< array_iterator > begin() &noexcept Begin array iteration.
-simdjson_inline simdjson_result< uint64_t > get_uint64_in_string() noexcept Cast this JSON value (inside string) to a unsigned integer.
-simdjson_inline int32_t current_depth() const noexcept Returns the current depth in the document if in bounds.
-simdjson_inline simdjson_result< bool > is_scalar() noexcept Checks whether the value is a scalar (string, number, null, Boolean).
+simdjson_inline simdjson_result< array_iterator > begin() &noexcept Begin array iteration.
+simdjson_inline simdjson_result< uint64_t > get_uint64_in_string() noexcept Cast this JSON value (inside string) to a unsigned integer.
+simdjson_inline int32_t current_depth() const noexcept Returns the current depth in the document if in bounds.
+simdjson_inline simdjson_result< bool > is_scalar() noexcept Checks whether the value is a scalar (string, number, null, Boolean).
simdjson_inline simdjson_result< T > get() noexcept Get this value as the given type.
-simdjson_inline simdjson_result< std::string_view > get_string() noexcept Cast this JSON value to a string.
static simdjson_inline value resume(const value_iterator &iter) noexcept Resume a value.
-simdjson_inline simdjson_result< double > get_double() noexcept Cast this JSON value to a double.
-simdjson_inline simdjson_result< bool > get_bool() noexcept Cast this JSON value to a bool.
-simdjson_warn_unused simdjson_inline simdjson_result< number > get_number() noexcept Attempt to parse an ondemand::number.
-simdjson_inline simdjson_result< value > at_pointer(std::string_view json_pointer) noexcept Get the value associated with the given JSON pointer.
-simdjson_inline simdjson_result< int64_t > get_int64() noexcept Cast this JSON value to a signed integer.
+simdjson_inline simdjson_result< double > get_double() noexcept Cast this JSON value to a double.
+simdjson_inline simdjson_result< std::string_view > get_string(bool allow_replacement=false) noexcept Cast this JSON value to a string.
+simdjson_inline simdjson_result< bool > get_bool() noexcept Cast this JSON value to a bool.
+simdjson_warn_unused simdjson_inline simdjson_result< number > get_number() noexcept Attempt to parse an ondemand::number.
+simdjson_inline simdjson_result< value > at_pointer(std::string_view json_pointer) noexcept Get the value associated with the given JSON pointer.
+simdjson_inline simdjson_result< std::string_view > get_wobbly_string() noexcept Cast this JSON value to a "wobbly" string.
+simdjson_inline simdjson_result< int64_t > get_int64() noexcept Cast this JSON value to a signed integer.
simdjson_inline value() noexcept=default Create a new invalid value.
-simdjson_inline simdjson_result< json_type > type() noexcept Get the type of this JSON value.
-simdjson_inline simdjson_result< double > get_double_in_string() noexcept Cast this JSON value (inside string) to a double.
+simdjson_inline simdjson_result< json_type > type() noexcept Get the type of this JSON value.
+simdjson_inline simdjson_result< double > get_double_in_string() noexcept Cast this JSON value (inside string) to a double.
simdjson_inline simdjson_result< raw_json_string > get_raw_json_string() noexcept Cast this JSON value to a raw_json_string.
-simdjson_inline simdjson_result< value > find_field_unordered(std::string_view key) noexcept Look up a field by name on an object, without regard to key order.
-simdjson_inline simdjson_result< value > at(size_t index) noexcept Get the value at the given index in the array.
-simdjson_inline simdjson_result< uint64_t > get_uint64() noexcept Cast this JSON value to an unsigned integer.
+simdjson_inline simdjson_result< value > find_field_unordered(std::string_view key) noexcept Look up a field by name on an object, without regard to key order.
+simdjson_inline simdjson_result< value > at(size_t index) noexcept Get the value at the given index in the array.
+simdjson_inline simdjson_result< uint64_t > get_uint64() noexcept Cast this JSON value to an unsigned integer.
simdjson_inline void skip() noexcept Skip this value, allowing iteration to continue.
number_type The type of a JSON number.
@ object A JSON object ( { "a": 1, "b" 2, ... } )
@@ -329,8 +333,8 @@ $(document).ready(function(){initNavTree('value_8h_source.html',''); initResizab
-
-
+
+
The result of a simdjson operation that could fail.
simdjson_inline error_code error() const noexcept The error.
simdjson_warn_unused simdjson_inline error_code get(T &value) &&noexcept Move the value to the provided variable.
diff --git a/value__iterator-inl_8h_source.html b/value__iterator-inl_8h_source.html
index 5fcf79832..ec96d84dd 100644
--- a/value__iterator-inl_8h_source.html
+++ b/value__iterator-inl_8h_source.html
@@ -560,530 +560,536 @@ $(document).ready(function(){initNavTree('value__iterator-inl_8h_source.html',''
475 return is_null_string;
- 478 simdjson_warn_unused simdjson_inline simdjson_result<std::string_view> value_iterator::get_string() noexcept {
- 479 return get_raw_json_string().unescape(json_iter());
+ 478 simdjson_warn_unused simdjson_inline simdjson_result<std::string_view> value_iterator::get_string( bool allow_replacement) noexcept {
+ 479 return get_raw_json_string().unescape(json_iter(), allow_replacement);
- 481 simdjson_warn_unused simdjson_inline simdjson_result<raw_json_string> value_iterator::get_raw_json_string() noexcept {
- 482 auto json = peek_scalar( "string");
- 483 if (*json != '"') { return incorrect_type_error( "Not a string"); }
- 484 advance_scalar( "string");
- 485 return raw_json_string(json+1);
-
- 487 simdjson_warn_unused simdjson_inline simdjson_result<uint64_t> value_iterator::get_uint64() noexcept {
- 488 auto result = numberparsing::parse_unsigned(peek_non_root_scalar( "uint64"));
- 489 if(result.error() == SUCCESS) { advance_non_root_scalar( "uint64"); }
-
-
- 492 simdjson_warn_unused simdjson_inline simdjson_result<uint64_t> value_iterator::get_uint64_in_string() noexcept {
- 493 auto result = numberparsing::parse_unsigned_in_string(peek_non_root_scalar( "uint64"));
- 494 if(result.error() == SUCCESS) { advance_non_root_scalar( "uint64"); }
-
-
- 497 simdjson_warn_unused simdjson_inline simdjson_result<int64_t> value_iterator::get_int64() noexcept {
- 498 auto result = numberparsing::parse_integer(peek_non_root_scalar( "int64"));
- 499 if(result.error() == SUCCESS) { advance_non_root_scalar( "int64"); }
-
-
- 502 simdjson_warn_unused simdjson_inline simdjson_result<int64_t> value_iterator::get_int64_in_string() noexcept {
- 503 auto result = numberparsing::parse_integer_in_string(peek_non_root_scalar( "int64"));
- 504 if(result.error() == SUCCESS) { advance_non_root_scalar( "int64"); }
-
-
- 507 simdjson_warn_unused simdjson_inline simdjson_result<double> value_iterator::get_double() noexcept {
- 508 auto result = numberparsing::parse_double(peek_non_root_scalar( "double"));
- 509 if(result.error() == SUCCESS) { advance_non_root_scalar( "double"); }
-
-
- 512 simdjson_warn_unused simdjson_inline simdjson_result<double> value_iterator::get_double_in_string() noexcept {
- 513 auto result = numberparsing::parse_double_in_string(peek_non_root_scalar( "double"));
- 514 if(result.error() == SUCCESS) { advance_non_root_scalar( "double"); }
-
-
- 517 simdjson_warn_unused simdjson_inline simdjson_result<bool> value_iterator::get_bool() noexcept {
- 518 auto result = parse_bool(peek_non_root_scalar( "bool"));
- 519 if(result.error() == SUCCESS) { advance_non_root_scalar( "bool"); }
-
-
- 522 simdjson_inline simdjson_result<bool> value_iterator::is_null() noexcept {
-
- 524 SIMDJSON_TRY(parse_null(peek_non_root_scalar( "null")).get(is_null_value));
- 525 if(is_null_value) { advance_non_root_scalar( "null"); }
- 526 return is_null_value;
-
- 528 simdjson_inline bool value_iterator::is_negative() noexcept {
- 529 return numberparsing::is_negative(peek_non_root_scalar( "numbersign"));
+ 481 simdjson_warn_unused simdjson_inline simdjson_result<std::string_view> value_iterator::get_wobbly_string() noexcept {
+ 482 return get_raw_json_string().unescape_wobbly(json_iter());
+
+ 484 simdjson_warn_unused simdjson_inline simdjson_result<raw_json_string> value_iterator::get_raw_json_string() noexcept {
+ 485 auto json = peek_scalar( "string");
+ 486 if (*json != '"') { return incorrect_type_error( "Not a string"); }
+ 487 advance_scalar( "string");
+ 488 return raw_json_string(json+1);
+
+ 490 simdjson_warn_unused simdjson_inline simdjson_result<uint64_t> value_iterator::get_uint64() noexcept {
+ 491 auto result = numberparsing::parse_unsigned(peek_non_root_scalar( "uint64"));
+ 492 if(result.error() == SUCCESS) { advance_non_root_scalar( "uint64"); }
+
+
+ 495 simdjson_warn_unused simdjson_inline simdjson_result<uint64_t> value_iterator::get_uint64_in_string() noexcept {
+ 496 auto result = numberparsing::parse_unsigned_in_string(peek_non_root_scalar( "uint64"));
+ 497 if(result.error() == SUCCESS) { advance_non_root_scalar( "uint64"); }
+
+
+ 500 simdjson_warn_unused simdjson_inline simdjson_result<int64_t> value_iterator::get_int64() noexcept {
+ 501 auto result = numberparsing::parse_integer(peek_non_root_scalar( "int64"));
+ 502 if(result.error() == SUCCESS) { advance_non_root_scalar( "int64"); }
+
+
+ 505 simdjson_warn_unused simdjson_inline simdjson_result<int64_t> value_iterator::get_int64_in_string() noexcept {
+ 506 auto result = numberparsing::parse_integer_in_string(peek_non_root_scalar( "int64"));
+ 507 if(result.error() == SUCCESS) { advance_non_root_scalar( "int64"); }
+
+
+ 510 simdjson_warn_unused simdjson_inline simdjson_result<double> value_iterator::get_double() noexcept {
+ 511 auto result = numberparsing::parse_double(peek_non_root_scalar( "double"));
+ 512 if(result.error() == SUCCESS) { advance_non_root_scalar( "double"); }
+
+
+ 515 simdjson_warn_unused simdjson_inline simdjson_result<double> value_iterator::get_double_in_string() noexcept {
+ 516 auto result = numberparsing::parse_double_in_string(peek_non_root_scalar( "double"));
+ 517 if(result.error() == SUCCESS) { advance_non_root_scalar( "double"); }
+
+
+ 520 simdjson_warn_unused simdjson_inline simdjson_result<bool> value_iterator::get_bool() noexcept {
+ 521 auto result = parse_bool(peek_non_root_scalar( "bool"));
+ 522 if(result.error() == SUCCESS) { advance_non_root_scalar( "bool"); }
+
+
+ 525 simdjson_inline simdjson_result<bool> value_iterator::is_null() noexcept {
+
+ 527 SIMDJSON_TRY(parse_null(peek_non_root_scalar( "null")).get(is_null_value));
+ 528 if(is_null_value) { advance_non_root_scalar( "null"); }
+ 529 return is_null_value;
- 531 simdjson_inline bool value_iterator::is_root_negative() noexcept {
- 532 return numberparsing::is_negative(peek_root_scalar( "numbersign"));
+ 531 simdjson_inline bool value_iterator::is_negative() noexcept {
+ 532 return numberparsing::is_negative(peek_non_root_scalar( "numbersign"));
- 534 simdjson_inline simdjson_result<bool> value_iterator::is_integer() noexcept {
- 535 return numberparsing::is_integer(peek_non_root_scalar( "integer"));
+ 534 simdjson_inline bool value_iterator::is_root_negative() noexcept {
+ 535 return numberparsing::is_negative(peek_root_scalar( "numbersign"));
- 537 simdjson_inline simdjson_result<number_type> value_iterator::get_number_type() noexcept {
- 538 return numberparsing::get_number_type(peek_non_root_scalar( "integer"));
+ 537 simdjson_inline simdjson_result<bool> value_iterator::is_integer() noexcept {
+ 538 return numberparsing::is_integer(peek_non_root_scalar( "integer"));
- 540 simdjson_inline simdjson_result<number> value_iterator::get_number() noexcept {
-
- 542 error_code error = numberparsing::parse_number(peek_non_root_scalar( "number"), num);
- 543 if(error) { return error; }
-
-
-
- 547 simdjson_inline simdjson_result<bool> value_iterator::is_root_integer( bool check_trailing) noexcept {
- 548 auto max_len = peek_start_length();
- 549 auto json = peek_root_scalar( "is_root_integer");
- 550 uint8_t tmpbuf[20+1];
- 551 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
-
-
- 554 auto answer = numberparsing::is_integer(tmpbuf);
-
-
-
- 558 if(check_trailing && (answer.error() == SUCCESS) && (!_json_iter->is_single_token())) { return TRAILING_CONTENT; }
-
-
-
- 562 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::number_type> value_iterator::get_root_number_type( bool check_trailing) noexcept {
- 563 auto max_len = peek_start_length();
- 564 auto json = peek_root_scalar( "number");
-
-
-
- 568 uint8_t tmpbuf[1074+8+1];
- 569 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
- 570 logger::log_error(*_json_iter, start_position(), depth(), "Root number more than 1082 characters");
-
-
- 573 auto answer = numberparsing::get_number_type(tmpbuf);
- 574 if (check_trailing && (answer.error() == SUCCESS) && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
-
-
- 577 simdjson_inline simdjson_result<number> value_iterator::get_root_number( bool check_trailing) noexcept {
- 578 auto max_len = peek_start_length();
- 579 auto json = peek_root_scalar( "number");
-
-
-
- 583 uint8_t tmpbuf[1074+8+1];
- 584 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
- 585 logger::log_error(*_json_iter, start_position(), depth(), "Root number more than 1082 characters");
-
-
-
- 589 error_code error = numberparsing::parse_number(tmpbuf, num);
- 590 if(error) { return error; }
- 591 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
- 592 advance_root_scalar( "number");
-
-
- 595 simdjson_warn_unused simdjson_inline simdjson_result<std::string_view> value_iterator::get_root_string( bool check_trailing) noexcept {
- 596 return get_root_raw_json_string(check_trailing).unescape(json_iter());
+ 540 simdjson_inline simdjson_result<number_type> value_iterator::get_number_type() noexcept {
+ 541 return numberparsing::get_number_type(peek_non_root_scalar( "integer"));
+
+ 543 simdjson_inline simdjson_result<number> value_iterator::get_number() noexcept {
+
+ 545 error_code error = numberparsing::parse_number(peek_non_root_scalar( "number"), num);
+ 546 if(error) { return error; }
+
+
+
+ 550 simdjson_inline simdjson_result<bool> value_iterator::is_root_integer( bool check_trailing) noexcept {
+ 551 auto max_len = peek_start_length();
+ 552 auto json = peek_root_scalar( "is_root_integer");
+ 553 uint8_t tmpbuf[20+1];
+ 554 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
+
+
+ 557 auto answer = numberparsing::is_integer(tmpbuf);
+
+
+
+ 561 if(check_trailing && (answer.error() == SUCCESS) && (!_json_iter->is_single_token())) { return TRAILING_CONTENT; }
+
+
+
+ 565 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::number_type> value_iterator::get_root_number_type( bool check_trailing) noexcept {
+ 566 auto max_len = peek_start_length();
+ 567 auto json = peek_root_scalar( "number");
+
+
+
+ 571 uint8_t tmpbuf[1074+8+1];
+ 572 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
+ 573 logger::log_error(*_json_iter, start_position(), depth(), "Root number more than 1082 characters");
+
+
+ 576 auto answer = numberparsing::get_number_type(tmpbuf);
+ 577 if (check_trailing && (answer.error() == SUCCESS) && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
+
+
+ 580 simdjson_inline simdjson_result<number> value_iterator::get_root_number( bool check_trailing) noexcept {
+ 581 auto max_len = peek_start_length();
+ 582 auto json = peek_root_scalar( "number");
+
+
+
+ 586 uint8_t tmpbuf[1074+8+1];
+ 587 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
+ 588 logger::log_error(*_json_iter, start_position(), depth(), "Root number more than 1082 characters");
+
+
+
+ 592 error_code error = numberparsing::parse_number(tmpbuf, num);
+ 593 if(error) { return error; }
+ 594 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
+ 595 advance_root_scalar( "number");
+
- 598 simdjson_warn_unused simdjson_inline simdjson_result<raw_json_string> value_iterator::get_root_raw_json_string( bool check_trailing) noexcept {
- 599 auto json = peek_scalar( "string");
- 600 if (*json != '"') { return incorrect_type_error( "Not a string"); }
- 601 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
- 602 advance_scalar( "string");
- 603 return raw_json_string(json+1);
-
- 605 simdjson_warn_unused simdjson_inline simdjson_result<uint64_t> value_iterator::get_root_uint64( bool check_trailing) noexcept {
- 606 auto max_len = peek_start_length();
- 607 auto json = peek_root_scalar( "uint64");
- 608 uint8_t tmpbuf[20+1];
- 609 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
- 610 logger::log_error(*_json_iter, start_position(), depth(), "Root number more than 20 characters");
-
-
- 613 auto result = numberparsing::parse_unsigned(tmpbuf);
- 614 if(result.error() == SUCCESS) {
- 615 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
- 616 advance_root_scalar( "uint64");
-
-
-
- 620 simdjson_warn_unused simdjson_inline simdjson_result<uint64_t> value_iterator::get_root_uint64_in_string( bool check_trailing) noexcept {
- 621 auto max_len = peek_start_length();
- 622 auto json = peek_root_scalar( "uint64");
- 623 uint8_t tmpbuf[20+1];
- 624 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
- 625 logger::log_error(*_json_iter, start_position(), depth(), "Root number more than 20 characters");
-
-
- 628 auto result = numberparsing::parse_unsigned_in_string(tmpbuf);
- 629 if(result.error() == SUCCESS) {
- 630 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
- 631 advance_root_scalar( "uint64");
-
-
-
- 635 simdjson_warn_unused simdjson_inline simdjson_result<int64_t> value_iterator::get_root_int64( bool check_trailing) noexcept {
- 636 auto max_len = peek_start_length();
- 637 auto json = peek_root_scalar( "int64");
- 638 uint8_t tmpbuf[20+1];
- 639 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
- 640 logger::log_error(*_json_iter, start_position(), depth(), "Root number more than 20 characters");
-
-
-
- 644 auto result = numberparsing::parse_integer(tmpbuf);
- 645 if(result.error() == SUCCESS) {
- 646 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
- 647 advance_root_scalar( "int64");
+ 598 simdjson_warn_unused simdjson_inline simdjson_result<std::string_view> value_iterator::get_root_string( bool check_trailing, bool allow_replacement) noexcept {
+ 599 return get_root_raw_json_string(check_trailing).unescape(json_iter(), allow_replacement);
+
+ 601 simdjson_warn_unused simdjson_inline simdjson_result<std::string_view> value_iterator::get_root_wobbly_string( bool check_trailing) noexcept {
+ 602 return get_root_raw_json_string(check_trailing).unescape_wobbly(json_iter());
+
+ 604 simdjson_warn_unused simdjson_inline simdjson_result<raw_json_string> value_iterator::get_root_raw_json_string( bool check_trailing) noexcept {
+ 605 auto json = peek_scalar( "string");
+ 606 if (*json != '"') { return incorrect_type_error( "Not a string"); }
+ 607 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
+ 608 advance_scalar( "string");
+ 609 return raw_json_string(json+1);
+
+ 611 simdjson_warn_unused simdjson_inline simdjson_result<uint64_t> value_iterator::get_root_uint64( bool check_trailing) noexcept {
+ 612 auto max_len = peek_start_length();
+ 613 auto json = peek_root_scalar( "uint64");
+ 614 uint8_t tmpbuf[20+1];
+ 615 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
+ 616 logger::log_error(*_json_iter, start_position(), depth(), "Root number more than 20 characters");
+
+
+ 619 auto result = numberparsing::parse_unsigned(tmpbuf);
+ 620 if(result.error() == SUCCESS) {
+ 621 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
+ 622 advance_root_scalar( "uint64");
+
+
+
+ 626 simdjson_warn_unused simdjson_inline simdjson_result<uint64_t> value_iterator::get_root_uint64_in_string( bool check_trailing) noexcept {
+ 627 auto max_len = peek_start_length();
+ 628 auto json = peek_root_scalar( "uint64");
+ 629 uint8_t tmpbuf[20+1];
+ 630 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
+ 631 logger::log_error(*_json_iter, start_position(), depth(), "Root number more than 20 characters");
+
+
+ 634 auto result = numberparsing::parse_unsigned_in_string(tmpbuf);
+ 635 if(result.error() == SUCCESS) {
+ 636 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
+ 637 advance_root_scalar( "uint64");
+
+
+
+ 641 simdjson_warn_unused simdjson_inline simdjson_result<int64_t> value_iterator::get_root_int64( bool check_trailing) noexcept {
+ 642 auto max_len = peek_start_length();
+ 643 auto json = peek_root_scalar( "int64");
+ 644 uint8_t tmpbuf[20+1];
+ 645 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
+ 646 logger::log_error(*_json_iter, start_position(), depth(), "Root number more than 20 characters");
+
-
-
- 651 simdjson_warn_unused simdjson_inline simdjson_result<int64_t> value_iterator::get_root_int64_in_string( bool check_trailing) noexcept {
- 652 auto max_len = peek_start_length();
- 653 auto json = peek_root_scalar( "int64");
- 654 uint8_t tmpbuf[20+1];
- 655 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
- 656 logger::log_error(*_json_iter, start_position(), depth(), "Root number more than 20 characters");
-
-
-
- 660 auto result = numberparsing::parse_integer_in_string(tmpbuf);
- 661 if(result.error() == SUCCESS) {
- 662 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
- 663 advance_root_scalar( "int64");
+
+ 650 auto result = numberparsing::parse_integer(tmpbuf);
+ 651 if(result.error() == SUCCESS) {
+ 652 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
+ 653 advance_root_scalar( "int64");
+
+
+
+ 657 simdjson_warn_unused simdjson_inline simdjson_result<int64_t> value_iterator::get_root_int64_in_string( bool check_trailing) noexcept {
+ 658 auto max_len = peek_start_length();
+ 659 auto json = peek_root_scalar( "int64");
+ 660 uint8_t tmpbuf[20+1];
+ 661 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
+ 662 logger::log_error(*_json_iter, start_position(), depth(), "Root number more than 20 characters");
+
-
-
- 667 simdjson_warn_unused simdjson_inline simdjson_result<double> value_iterator::get_root_double( bool check_trailing) noexcept {
- 668 auto max_len = peek_start_length();
- 669 auto json = peek_root_scalar( "double");
-
-
-
- 673 uint8_t tmpbuf[1074+8+1];
- 674 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
- 675 logger::log_error(*_json_iter, start_position(), depth(), "Root number more than 1082 characters");
-
-
- 678 auto result = numberparsing::parse_double(tmpbuf);
- 679 if(result.error() == SUCCESS) {
- 680 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
- 681 advance_root_scalar( "double");
-
-
-
-
- 686 simdjson_warn_unused simdjson_inline simdjson_result<double> value_iterator::get_root_double_in_string( bool check_trailing) noexcept {
- 687 auto max_len = peek_start_length();
- 688 auto json = peek_root_scalar( "double");
-
-
-
- 692 uint8_t tmpbuf[1074+8+1];
- 693 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
- 694 logger::log_error(*_json_iter, start_position(), depth(), "Root number more than 1082 characters");
-
-
- 697 auto result = numberparsing::parse_double_in_string(tmpbuf);
- 698 if(result.error() == SUCCESS) {
- 699 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
- 700 advance_root_scalar( "double");
-
-
-
- 704 simdjson_warn_unused simdjson_inline simdjson_result<bool> value_iterator::get_root_bool( bool check_trailing) noexcept {
- 705 auto max_len = peek_start_length();
- 706 auto json = peek_root_scalar( "bool");
-
- 708 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) { return incorrect_type_error( "Not a boolean"); }
- 709 auto result = parse_bool(tmpbuf);
- 710 if(result.error() == SUCCESS) {
- 711 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
- 712 advance_root_scalar( "bool");
-
-
-
- 716 simdjson_inline simdjson_result<bool> value_iterator::is_root_null( bool check_trailing) noexcept {
- 717 auto max_len = peek_start_length();
- 718 auto json = peek_root_scalar( "null");
- 719 bool result = (max_len >= 4 && !atomparsing::str4ncmp(json, "null") &&
- 720 (max_len == 4 || jsoncharutils::is_structural_or_whitespace(json[4])));
-
- 722 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
- 723 advance_root_scalar( "null");
-
-
-
-
- 728 simdjson_warn_unused simdjson_inline error_code value_iterator::skip_child() noexcept {
- 729 SIMDJSON_ASSUME( _json_iter->token._position > _start_position );
- 730 SIMDJSON_ASSUME( _json_iter->_depth >= _depth );
-
- 732 return _json_iter->skip_child(depth());
-
-
- 735 simdjson_inline value_iterator value_iterator::child() const noexcept {
-
- 737 return { _json_iter, depth()+1, _json_iter->token.position() };
-
-
-
-
-
- 743 SIMDJSON_PUSH_DISABLE_WARNINGS
- 744 SIMDJSON_DISABLE_STRICT_OVERFLOW_WARNING
- 745 simdjson_inline bool value_iterator::is_open() const noexcept {
- 746 return _json_iter->depth() >= depth();
-
- 748 SIMDJSON_POP_DISABLE_WARNINGS
-
- 750 simdjson_inline bool value_iterator::at_end() const noexcept {
- 751 return _json_iter->at_end();
-
-
- 754 simdjson_inline bool value_iterator::at_start() const noexcept {
- 755 return _json_iter->token.position() == start_position();
-
-
- 758 simdjson_inline bool value_iterator::at_first_field() const noexcept {
- 759 SIMDJSON_ASSUME( _json_iter->token._position > _start_position );
- 760 return _json_iter->token.position() == start_position() + 1;
-
-
- 763 simdjson_inline void value_iterator::abandon() noexcept {
- 764 _json_iter->abandon();
-
-
- 767 simdjson_warn_unused simdjson_inline depth_t value_iterator::depth() const noexcept {
-
-
- 770 simdjson_warn_unused simdjson_inline error_code value_iterator::error() const noexcept {
- 771 return _json_iter->error;
-
- 773 simdjson_warn_unused simdjson_inline uint8_t *&value_iterator::string_buf_loc() noexcept {
- 774 return _json_iter->string_buf_loc();
+
+ 666 auto result = numberparsing::parse_integer_in_string(tmpbuf);
+ 667 if(result.error() == SUCCESS) {
+ 668 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
+ 669 advance_root_scalar( "int64");
+
+
+
+ 673 simdjson_warn_unused simdjson_inline simdjson_result<double> value_iterator::get_root_double( bool check_trailing) noexcept {
+ 674 auto max_len = peek_start_length();
+ 675 auto json = peek_root_scalar( "double");
+
+
+
+ 679 uint8_t tmpbuf[1074+8+1];
+ 680 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
+ 681 logger::log_error(*_json_iter, start_position(), depth(), "Root number more than 1082 characters");
+
+
+ 684 auto result = numberparsing::parse_double(tmpbuf);
+ 685 if(result.error() == SUCCESS) {
+ 686 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
+ 687 advance_root_scalar( "double");
+
+
+
+
+ 692 simdjson_warn_unused simdjson_inline simdjson_result<double> value_iterator::get_root_double_in_string( bool check_trailing) noexcept {
+ 693 auto max_len = peek_start_length();
+ 694 auto json = peek_root_scalar( "double");
+
+
+
+ 698 uint8_t tmpbuf[1074+8+1];
+ 699 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) {
+ 700 logger::log_error(*_json_iter, start_position(), depth(), "Root number more than 1082 characters");
+
+
+ 703 auto result = numberparsing::parse_double_in_string(tmpbuf);
+ 704 if(result.error() == SUCCESS) {
+ 705 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
+ 706 advance_root_scalar( "double");
+
+
+
+ 710 simdjson_warn_unused simdjson_inline simdjson_result<bool> value_iterator::get_root_bool( bool check_trailing) noexcept {
+ 711 auto max_len = peek_start_length();
+ 712 auto json = peek_root_scalar( "bool");
+
+ 714 if (!_json_iter->copy_to_buffer(json, max_len, tmpbuf)) { return incorrect_type_error( "Not a boolean"); }
+ 715 auto result = parse_bool(tmpbuf);
+ 716 if(result.error() == SUCCESS) {
+ 717 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
+ 718 advance_root_scalar( "bool");
+
+
+
+ 722 simdjson_inline simdjson_result<bool> value_iterator::is_root_null( bool check_trailing) noexcept {
+ 723 auto max_len = peek_start_length();
+ 724 auto json = peek_root_scalar( "null");
+ 725 bool result = (max_len >= 4 && !atomparsing::str4ncmp(json, "null") &&
+ 726 (max_len == 4 || jsoncharutils::is_structural_or_whitespace(json[4])));
+
+ 728 if (check_trailing && !_json_iter->is_single_token()) { return TRAILING_CONTENT; }
+ 729 advance_root_scalar( "null");
+
+
+
+
+ 734 simdjson_warn_unused simdjson_inline error_code value_iterator::skip_child() noexcept {
+ 735 SIMDJSON_ASSUME( _json_iter->token._position > _start_position );
+ 736 SIMDJSON_ASSUME( _json_iter->_depth >= _depth );
+
+ 738 return _json_iter->skip_child(depth());
+
+
+ 741 simdjson_inline value_iterator value_iterator::child() const noexcept {
+
+ 743 return { _json_iter, depth()+1, _json_iter->token.position() };
+
+
+
+
+
+ 749 SIMDJSON_PUSH_DISABLE_WARNINGS
+ 750 SIMDJSON_DISABLE_STRICT_OVERFLOW_WARNING
+ 751 simdjson_inline bool value_iterator::is_open() const noexcept {
+ 752 return _json_iter->depth() >= depth();
+
+ 754 SIMDJSON_POP_DISABLE_WARNINGS
+
+ 756 simdjson_inline bool value_iterator::at_end() const noexcept {
+ 757 return _json_iter->at_end();
+
+
+ 760 simdjson_inline bool value_iterator::at_start() const noexcept {
+ 761 return _json_iter->token.position() == start_position();
+
+
+ 764 simdjson_inline bool value_iterator::at_first_field() const noexcept {
+ 765 SIMDJSON_ASSUME( _json_iter->token._position > _start_position );
+ 766 return _json_iter->token.position() == start_position() + 1;
+
+
+ 769 simdjson_inline void value_iterator::abandon() noexcept {
+ 770 _json_iter->abandon();
+
+
+ 773 simdjson_warn_unused simdjson_inline depth_t value_iterator::depth() const noexcept {
+
- 776 simdjson_warn_unused simdjson_inline const json_iterator &value_iterator::json_iter() const noexcept {
-
+ 776 simdjson_warn_unused simdjson_inline error_code value_iterator::error() const noexcept {
+ 777 return _json_iter->error;
- 779 simdjson_warn_unused simdjson_inline json_iterator &value_iterator::json_iter() noexcept {
-
+ 779 simdjson_warn_unused simdjson_inline uint8_t *&value_iterator::string_buf_loc() noexcept {
+ 780 return _json_iter->string_buf_loc();
-
- 783 simdjson_inline const uint8_t *value_iterator::peek_start() const noexcept {
- 784 return _json_iter->peek(start_position());
-
- 786 simdjson_inline uint32_t value_iterator::peek_start_length() const noexcept {
- 787 return _json_iter->peek_length(start_position());
-
-
- 790 simdjson_inline const uint8_t *value_iterator::peek_scalar( const char *type) noexcept {
- 791 logger::log_value(*_json_iter, start_position(), depth(), type);
-
- 793 if (!is_at_start()) { return peek_start(); }
-
-
-
- 797 return _json_iter->peek();
-
-
- 800 simdjson_inline void value_iterator::advance_scalar( const char *type) noexcept {
- 801 logger::log_value(*_json_iter, start_position(), depth(), type);
-
- 803 if (!is_at_start()) { return; }
-
-
-
- 807 _json_iter->return_current_and_advance();
- 808 _json_iter->ascend_to(depth()-1);
-
+ 782 simdjson_warn_unused simdjson_inline const json_iterator &value_iterator::json_iter() const noexcept {
+
+
+ 785 simdjson_warn_unused simdjson_inline json_iterator &value_iterator::json_iter() noexcept {
+
+
+
+ 789 simdjson_inline const uint8_t *value_iterator::peek_start() const noexcept {
+ 790 return _json_iter->peek(start_position());
+
+ 792 simdjson_inline uint32_t value_iterator::peek_start_length() const noexcept {
+ 793 return _json_iter->peek_length(start_position());
+
+
+ 796 simdjson_inline const uint8_t *value_iterator::peek_scalar( const char *type) noexcept {
+ 797 logger::log_value(*_json_iter, start_position(), depth(), type);
+
+ 799 if (!is_at_start()) { return peek_start(); }
+
+
+
+ 803 return _json_iter->peek();
+
+
+ 806 simdjson_inline void value_iterator::advance_scalar( const char *type) noexcept {
+ 807 logger::log_value(*_json_iter, start_position(), depth(), type);
+
+ 809 if (!is_at_start()) { return; }
- 811 simdjson_inline error_code value_iterator::start_container(uint8_t start_char, const char *incorrect_type_message, const char *type) noexcept {
- 812 logger::log_start_value(*_json_iter, start_position(), depth(), type);
-
-
- 815 if (!is_at_start()) {
- 816 #if SIMDJSON_DEVELOPMENT_CHECKS
-
-
-
- 820 if (*json != start_char) { return incorrect_type_error(incorrect_type_message); }
-
-
- 828 json = _json_iter->peek();
- 829 if (*json != start_char) { return incorrect_type_error(incorrect_type_message); }
- 830 _json_iter->return_current_and_advance();
-
-
-
-
-
-
-
- 838 simdjson_inline const uint8_t *value_iterator::peek_root_scalar( const char *type) noexcept {
- 839 logger::log_value(*_json_iter, start_position(), depth(), type);
- 840 if (!is_at_start()) { return peek_start(); }
-
-
- 843 return _json_iter->peek();
-
- 845 simdjson_inline const uint8_t *value_iterator::peek_non_root_scalar( const char *type) noexcept {
- 846 logger::log_value(*_json_iter, start_position(), depth(), type);
- 847 if (!is_at_start()) { return peek_start(); }
-
- 849 assert_at_non_root_start();
- 850 return _json_iter->peek();
-
-
- 853 simdjson_inline void value_iterator::advance_root_scalar( const char *type) noexcept {
- 854 logger::log_value(*_json_iter, start_position(), depth(), type);
- 855 if (!is_at_start()) { return; }
-
-
- 858 _json_iter->return_current_and_advance();
- 859 _json_iter->ascend_to(depth()-1);
-
- 861 simdjson_inline void value_iterator::advance_non_root_scalar( const char *type) noexcept {
- 862 logger::log_value(*_json_iter, start_position(), depth(), type);
- 863 if (!is_at_start()) { return; }
-
- 865 assert_at_non_root_start();
- 866 _json_iter->return_current_and_advance();
- 867 _json_iter->ascend_to(depth()-1);
-
-
- 870 simdjson_inline error_code value_iterator::incorrect_type_error( const char *message) const noexcept {
- 871 logger::log_error(*_json_iter, start_position(), depth(), message);
-
-
-
- 875 simdjson_inline bool value_iterator::is_at_start() const noexcept {
- 876 return position() == start_position();
-
-
- 879 simdjson_inline bool value_iterator::is_at_key() const noexcept {
-
-
-
- 883 return _depth == _json_iter->_depth && *_json_iter->peek() == '"';
-
-
- 886 simdjson_inline bool value_iterator::is_at_iterator_start() const noexcept {
-
- 888 auto delta = position() - start_position();
- 889 return delta == 1 || delta == 2;
+
+
+ 813 _json_iter->return_current_and_advance();
+ 814 _json_iter->ascend_to(depth()-1);
+
+
+ 817 simdjson_inline error_code value_iterator::start_container(uint8_t start_char, const char *incorrect_type_message, const char *type) noexcept {
+ 818 logger::log_start_value(*_json_iter, start_position(), depth(), type);
+
+
+ 821 if (!is_at_start()) {
+ 822 #if SIMDJSON_DEVELOPMENT_CHECKS
+
+
+
+ 826 if (*json != start_char) { return incorrect_type_error(incorrect_type_message); }
+
+
+ 834 json = _json_iter->peek();
+ 835 if (*json != start_char) { return incorrect_type_error(incorrect_type_message); }
+ 836 _json_iter->return_current_and_advance();
+
+
+
+
+
+
+
+ 844 simdjson_inline const uint8_t *value_iterator::peek_root_scalar( const char *type) noexcept {
+ 845 logger::log_value(*_json_iter, start_position(), depth(), type);
+ 846 if (!is_at_start()) { return peek_start(); }
+
+
+ 849 return _json_iter->peek();
+
+ 851 simdjson_inline const uint8_t *value_iterator::peek_non_root_scalar( const char *type) noexcept {
+ 852 logger::log_value(*_json_iter, start_position(), depth(), type);
+ 853 if (!is_at_start()) { return peek_start(); }
+
+ 855 assert_at_non_root_start();
+ 856 return _json_iter->peek();
+
+
+ 859 simdjson_inline void value_iterator::advance_root_scalar( const char *type) noexcept {
+ 860 logger::log_value(*_json_iter, start_position(), depth(), type);
+ 861 if (!is_at_start()) { return; }
+
+
+ 864 _json_iter->return_current_and_advance();
+ 865 _json_iter->ascend_to(depth()-1);
+
+ 867 simdjson_inline void value_iterator::advance_non_root_scalar( const char *type) noexcept {
+ 868 logger::log_value(*_json_iter, start_position(), depth(), type);
+ 869 if (!is_at_start()) { return; }
+
+ 871 assert_at_non_root_start();
+ 872 _json_iter->return_current_and_advance();
+ 873 _json_iter->ascend_to(depth()-1);
+
+
+ 876 simdjson_inline error_code value_iterator::incorrect_type_error( const char *message) const noexcept {
+ 877 logger::log_error(*_json_iter, start_position(), depth(), message);
+
+
+
+ 881 simdjson_inline bool value_iterator::is_at_start() const noexcept {
+ 882 return position() == start_position();
+
+
+ 885 simdjson_inline bool value_iterator::is_at_key() const noexcept {
+
+
+
+ 889 return _depth == _json_iter->_depth && *_json_iter->peek() == '"';
- 892 inline void value_iterator::assert_at_start() const noexcept {
- 893 SIMDJSON_ASSUME( _json_iter->token._position == _start_position );
- 894 SIMDJSON_ASSUME( _json_iter->_depth == _depth );
- 895 SIMDJSON_ASSUME( _depth > 0 );
+ 892 simdjson_inline bool value_iterator::is_at_iterator_start() const noexcept {
+
+ 894 auto delta = position() - start_position();
+ 895 return delta == 1 || delta == 2;
- 898 inline void value_iterator::assert_at_container_start() const noexcept {
- 899 SIMDJSON_ASSUME( _json_iter->token._position == _start_position + 1 );
+ 898 inline void value_iterator::assert_at_start() const noexcept {
+ 899 SIMDJSON_ASSUME( _json_iter->token._position == _start_position );
900 SIMDJSON_ASSUME( _json_iter->_depth == _depth );
901 SIMDJSON_ASSUME( _depth > 0 );
- 904 inline void value_iterator::assert_at_next() const noexcept {
- 905 SIMDJSON_ASSUME( _json_iter->token._position > _start_position );
+ 904 inline void value_iterator::assert_at_container_start() const noexcept {
+ 905 SIMDJSON_ASSUME( _json_iter->token._position == _start_position + 1 );
906 SIMDJSON_ASSUME( _json_iter->_depth == _depth );
907 SIMDJSON_ASSUME( _depth > 0 );
- 910 simdjson_inline void value_iterator::move_at_start() noexcept {
- 911 _json_iter->_depth = _depth;
- 912 _json_iter->token.set_position(_start_position);
-
-
- 915 simdjson_inline void value_iterator::move_at_container_start() noexcept {
- 916 _json_iter->_depth = _depth;
- 917 _json_iter->token.set_position(_start_position + 1);
-
-
- 920 simdjson_inline simdjson_result<bool> value_iterator::reset_array() noexcept {
- 921 move_at_container_start();
- 922 return started_array();
-
-
- 925 simdjson_inline simdjson_result<bool> value_iterator::reset_object() noexcept {
- 926 move_at_container_start();
- 927 return started_object();
-
-
- 930 inline void value_iterator::assert_at_child() const noexcept {
- 931 SIMDJSON_ASSUME( _json_iter->token._position > _start_position );
- 932 SIMDJSON_ASSUME( _json_iter->_depth == _depth + 1 );
- 933 SIMDJSON_ASSUME( _depth > 0 );
+ 910 inline void value_iterator::assert_at_next() const noexcept {
+ 911 SIMDJSON_ASSUME( _json_iter->token._position > _start_position );
+ 912 SIMDJSON_ASSUME( _json_iter->_depth == _depth );
+ 913 SIMDJSON_ASSUME( _depth > 0 );
+
+
+ 916 simdjson_inline void value_iterator::move_at_start() noexcept {
+ 917 _json_iter->_depth = _depth;
+ 918 _json_iter->token.set_position(_start_position);
+
+
+ 921 simdjson_inline void value_iterator::move_at_container_start() noexcept {
+ 922 _json_iter->_depth = _depth;
+ 923 _json_iter->token.set_position(_start_position + 1);
+
+
+ 926 simdjson_inline simdjson_result<bool> value_iterator::reset_array() noexcept {
+ 927 move_at_container_start();
+ 928 return started_array();
+
+
+ 931 simdjson_inline simdjson_result<bool> value_iterator::reset_object() noexcept {
+ 932 move_at_container_start();
+ 933 return started_object();
- 936 inline void value_iterator::assert_at_root() const noexcept {
-
- 938 SIMDJSON_ASSUME( _depth == 1 );
-
-
- 941 inline void value_iterator::assert_at_non_root_start() const noexcept {
-
- 943 SIMDJSON_ASSUME( _depth > 1 );
-
-
- 946 inline void value_iterator::assert_is_valid() const noexcept {
- 947 SIMDJSON_ASSUME( _json_iter != nullptr );
-
-
- 950 simdjson_inline bool value_iterator::is_valid() const noexcept {
- 951 return _json_iter != nullptr;
-
-
- 954 simdjson_inline simdjson_result<json_type> value_iterator::type() const noexcept {
- 955 switch (*peek_start()) {
-
-
-
-
-
-
-
-
-
-
-
- 967 case '0': case '1': case '2': case '3': case '4':
- 968 case '5': case '6': case '7': case '8': case '9':
-
-
-
-
-
-
- 975 simdjson_inline token_position value_iterator::start_position() const noexcept {
- 976 return _start_position;
-
-
- 979 simdjson_inline token_position value_iterator::position() const noexcept {
- 980 return _json_iter->position();
-
-
- 983 simdjson_inline token_position value_iterator::end_position() const noexcept {
- 984 return _json_iter->end_position();
-
-
- 987 simdjson_inline token_position value_iterator::last_position() const noexcept {
- 988 return _json_iter->last_position();
-
-
- 991 simdjson_inline error_code value_iterator::report_error( error_code error, const char *message) noexcept {
- 992 return _json_iter->report_error(error, message);
-
-
-
-
-
-
-
+ 936 inline void value_iterator::assert_at_child() const noexcept {
+ 937 SIMDJSON_ASSUME( _json_iter->token._position > _start_position );
+ 938 SIMDJSON_ASSUME( _json_iter->_depth == _depth + 1 );
+ 939 SIMDJSON_ASSUME( _depth > 0 );
+
+
+ 942 inline void value_iterator::assert_at_root() const noexcept {
+
+ 944 SIMDJSON_ASSUME( _depth == 1 );
+
+
+ 947 inline void value_iterator::assert_at_non_root_start() const noexcept {
+
+ 949 SIMDJSON_ASSUME( _depth > 1 );
+
+
+ 952 inline void value_iterator::assert_is_valid() const noexcept {
+ 953 SIMDJSON_ASSUME( _json_iter != nullptr );
+
+
+ 956 simdjson_inline bool value_iterator::is_valid() const noexcept {
+ 957 return _json_iter != nullptr;
+
+
+ 960 simdjson_inline simdjson_result<json_type> value_iterator::type() const noexcept {
+ 961 switch (*peek_start()) {
+
+
+
+
+
+
+
+
+
+
+
+ 973 case '0': case '1': case '2': case '3': case '4':
+ 974 case '5': case '6': case '7': case '8': case '9':
+
+
+
+
+
+
+ 981 simdjson_inline token_position value_iterator::start_position() const noexcept {
+ 982 return _start_position;
+
+
+ 985 simdjson_inline token_position value_iterator::position() const noexcept {
+ 986 return _json_iter->position();
+
+
+ 989 simdjson_inline token_position value_iterator::end_position() const noexcept {
+ 990 return _json_iter->end_position();
+
+
+ 993 simdjson_inline token_position value_iterator::last_position() const noexcept {
+ 994 return _json_iter->last_position();
+
+
+ 997 simdjson_inline error_code value_iterator::report_error( error_code error, const char *message) noexcept {
+ 998 return _json_iter->report_error(error, message);
+
- 1001 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value_iterator>::simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::value_iterator &&value) noexcept
- 1002 : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::value_iterator>(std::forward<SIMDJSON_IMPLEMENTATION::ondemand::value_iterator>(value)) {}
- 1003 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value_iterator>::simdjson_result( error_code error) noexcept
- 1004 : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::value_iterator>(error) {}
-
-
+
+
+
+
+
+
+ 1007 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value_iterator>::simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::value_iterator &&value) noexcept
+ 1008 : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::value_iterator>(std::forward<SIMDJSON_IMPLEMENTATION::ondemand::value_iterator>(value)) {}
+ 1009 simdjson_inline simdjson_result<SIMDJSON_IMPLEMENTATION::ondemand::value_iterator>::simdjson_result( error_code error) noexcept
+ 1010 : implementation_simdjson_result_base<SIMDJSON_IMPLEMENTATION::ondemand::value_iterator>(error) {}
+
+
A string escaped per JSON rules, terminated with quote (").
simdjson_inline bool unsafe_is_equal(size_t length, std::string_view target) const noexcept This compares the current instance to the std::string_view target: returns true if they are byte-by-b...
diff --git a/value__iterator_8h_source.html b/value__iterator_8h_source.html
index 34c079ab9..543823b3f 100644
--- a/value__iterator_8h_source.html
+++ b/value__iterator_8h_source.html
@@ -159,116 +159,118 @@ $(document).ready(function(){initNavTree('value__iterator_8h_source.html',''); i
273 simdjson_warn_unused simdjson_inline value_iterator child() const noexcept;
- 283 simdjson_warn_unused simdjson_inline simdjson_result<std::string_view> get_string() noexcept;
-
- 285 simdjson_warn_unused simdjson_inline simdjson_result<uint64_t> get_uint64() noexcept;
- 286 simdjson_warn_unused simdjson_inline simdjson_result<uint64_t> get_uint64_in_string() noexcept;
- 287 simdjson_warn_unused simdjson_inline simdjson_result<int64_t> get_int64() noexcept;
- 288 simdjson_warn_unused simdjson_inline simdjson_result<int64_t> get_int64_in_string() noexcept;
- 289 simdjson_warn_unused simdjson_inline simdjson_result< double> get_double() noexcept;
- 290 simdjson_warn_unused simdjson_inline simdjson_result< double> get_double_in_string() noexcept;
- 291 simdjson_warn_unused simdjson_inline simdjson_result< bool> get_bool() noexcept;
- 292 simdjson_warn_unused simdjson_inline simdjson_result< bool> is_null() noexcept;
- 293 simdjson_warn_unused simdjson_inline bool is_negative() noexcept;
- 294 simdjson_warn_unused simdjson_inline simdjson_result< bool> is_integer() noexcept;
-
-
-
- 298 simdjson_warn_unused simdjson_inline simdjson_result<std::string_view> get_root_string( bool check_trailing) noexcept;
-
- 300 simdjson_warn_unused simdjson_inline simdjson_result<uint64_t> get_root_uint64( bool check_trailing) noexcept;
- 301 simdjson_warn_unused simdjson_inline simdjson_result<uint64_t> get_root_uint64_in_string( bool check_trailing) noexcept;
- 302 simdjson_warn_unused simdjson_inline simdjson_result<int64_t> get_root_int64( bool check_trailing) noexcept;
- 303 simdjson_warn_unused simdjson_inline simdjson_result<int64_t> get_root_int64_in_string( bool check_trailing) noexcept;
- 304 simdjson_warn_unused simdjson_inline simdjson_result< double> get_root_double( bool check_trailing) noexcept;
- 305 simdjson_warn_unused simdjson_inline simdjson_result< double> get_root_double_in_string( bool check_trailing) noexcept;
- 306 simdjson_warn_unused simdjson_inline simdjson_result< bool> get_root_bool( bool check_trailing) noexcept;
- 307 simdjson_warn_unused simdjson_inline bool is_root_negative() noexcept;
- 308 simdjson_warn_unused simdjson_inline simdjson_result< bool> is_root_integer( bool check_trailing) noexcept;
-
- 310 simdjson_warn_unused simdjson_inline simdjson_result< number> get_root_number( bool check_trailing) noexcept;
- 311 simdjson_warn_unused simdjson_inline simdjson_result< bool> is_root_null( bool check_trailing) noexcept;
-
- 313 simdjson_inline error_code error() const noexcept;
- 314 simdjson_inline uint8_t *&string_buf_loc() noexcept;
- 315 simdjson_inline const json_iterator &json_iter() const noexcept;
- 316 simdjson_inline json_iterator &json_iter() noexcept;
-
- 318 simdjson_inline void assert_is_valid() const noexcept;
- 319 simdjson_inline bool is_valid() const noexcept;
-
-
-
-
- 340 simdjson_inline void move_at_start() noexcept;
-
- 348 simdjson_inline void move_at_container_start() noexcept;
-
- 350 inline std:: string to_string() const noexcept;
- 351 simdjson_inline value_iterator(json_iterator *json_iter, depth_t depth, token_position start_index) noexcept;
-
- 353 simdjson_inline simdjson_result< bool> parse_null(const uint8_t *json) const noexcept;
- 354 simdjson_inline simdjson_result< bool> parse_bool(const uint8_t *json) const noexcept;
- 355 simdjson_inline const uint8_t *peek_start() const noexcept;
- 356 simdjson_inline uint32_t peek_start_length() const noexcept;
-
- 387 simdjson_inline void advance_scalar(const char *type) noexcept;
- 388 simdjson_inline void advance_root_scalar(const char *type) noexcept;
- 389 simdjson_inline void advance_non_root_scalar(const char *type) noexcept;
-
- 391 simdjson_inline const uint8_t *peek_scalar(const char *type) noexcept;
- 392 simdjson_inline const uint8_t *peek_root_scalar(const char *type) noexcept;
- 393 simdjson_inline const uint8_t *peek_non_root_scalar(const char *type) noexcept;
-
-
- 396 simdjson_inline error_code start_container(uint8_t start_char, const char *incorrect_type_message, const char *type) noexcept;
- 397 simdjson_inline error_code end_container() noexcept;
-
- 405 simdjson_inline simdjson_result<const uint8_t *> advance_to_value() noexcept;
-
- 407 simdjson_inline error_code incorrect_type_error(const char *message) const noexcept;
- 408 simdjson_inline error_code error_unless_more_tokens(uint32_t tokens=1) const noexcept;
-
- 410 simdjson_inline bool is_at_start() const noexcept;
- 417 simdjson_inline bool is_at_iterator_start() const noexcept;
-
- 426 simdjson_inline bool is_at_key() const noexcept;
-
- 428 inline void assert_at_start() const noexcept;
- 429 inline void assert_at_container_start() const noexcept;
- 430 inline void assert_at_root() const noexcept;
- 431 inline void assert_at_child() const noexcept;
- 432 inline void assert_at_next() const noexcept;
- 433 inline void assert_at_non_root_start() const noexcept;
-
- 436 simdjson_inline token_position start_position() const noexcept;
-
- 439 simdjson_inline token_position position() const noexcept;
- 441 simdjson_inline token_position last_position() const noexcept;
- 443 simdjson_inline token_position end_position() const noexcept;
-
-
-
-
-
-
-
-
-
-
-
-
-
+ 283 simdjson_warn_unused simdjson_inline simdjson_result<std::string_view> get_string( bool allow_replacement) noexcept;
+ 284 simdjson_warn_unused simdjson_inline simdjson_result<std::string_view> get_wobbly_string() noexcept;
+
+ 286 simdjson_warn_unused simdjson_inline simdjson_result<uint64_t> get_uint64() noexcept;
+ 287 simdjson_warn_unused simdjson_inline simdjson_result<uint64_t> get_uint64_in_string() noexcept;
+ 288 simdjson_warn_unused simdjson_inline simdjson_result<int64_t> get_int64() noexcept;
+ 289 simdjson_warn_unused simdjson_inline simdjson_result<int64_t> get_int64_in_string() noexcept;
+ 290 simdjson_warn_unused simdjson_inline simdjson_result< double> get_double() noexcept;
+ 291 simdjson_warn_unused simdjson_inline simdjson_result< double> get_double_in_string() noexcept;
+ 292 simdjson_warn_unused simdjson_inline simdjson_result< bool> get_bool() noexcept;
+ 293 simdjson_warn_unused simdjson_inline simdjson_result< bool> is_null() noexcept;
+ 294 simdjson_warn_unused simdjson_inline bool is_negative() noexcept;
+ 295 simdjson_warn_unused simdjson_inline simdjson_result< bool> is_integer() noexcept;
+
+
+
+ 299 simdjson_warn_unused simdjson_inline simdjson_result<std::string_view> get_root_string( bool check_trailing, bool allow_replacement) noexcept;
+ 300 simdjson_warn_unused simdjson_inline simdjson_result<std::string_view> get_root_wobbly_string( bool check_trailing) noexcept;
+
+ 302 simdjson_warn_unused simdjson_inline simdjson_result<uint64_t> get_root_uint64( bool check_trailing) noexcept;
+ 303 simdjson_warn_unused simdjson_inline simdjson_result<uint64_t> get_root_uint64_in_string( bool check_trailing) noexcept;
+ 304 simdjson_warn_unused simdjson_inline simdjson_result<int64_t> get_root_int64( bool check_trailing) noexcept;
+ 305 simdjson_warn_unused simdjson_inline simdjson_result<int64_t> get_root_int64_in_string( bool check_trailing) noexcept;
+ 306 simdjson_warn_unused simdjson_inline simdjson_result< double> get_root_double( bool check_trailing) noexcept;
+ 307 simdjson_warn_unused simdjson_inline simdjson_result< double> get_root_double_in_string( bool check_trailing) noexcept;
+ 308 simdjson_warn_unused simdjson_inline simdjson_result< bool> get_root_bool( bool check_trailing) noexcept;
+ 309 simdjson_warn_unused simdjson_inline bool is_root_negative() noexcept;
+ 310 simdjson_warn_unused simdjson_inline simdjson_result< bool> is_root_integer( bool check_trailing) noexcept;
+
+ 312 simdjson_warn_unused simdjson_inline simdjson_result< number> get_root_number( bool check_trailing) noexcept;
+ 313 simdjson_warn_unused simdjson_inline simdjson_result< bool> is_root_null( bool check_trailing) noexcept;
+
+ 315 simdjson_inline error_code error() const noexcept;
+ 316 simdjson_inline uint8_t *&string_buf_loc() noexcept;
+ 317 simdjson_inline const json_iterator &json_iter() const noexcept;
+ 318 simdjson_inline json_iterator &json_iter() noexcept;
+
+ 320 simdjson_inline void assert_is_valid() const noexcept;
+ 321 simdjson_inline bool is_valid() const noexcept;
+
+
+
+
+ 342 simdjson_inline void move_at_start() noexcept;
+
+ 350 simdjson_inline void move_at_container_start() noexcept;
+
+ 352 inline std:: string to_string() const noexcept;
+ 353 simdjson_inline value_iterator(json_iterator *json_iter, depth_t depth, token_position start_index) noexcept;
+
+ 355 simdjson_inline simdjson_result< bool> parse_null(const uint8_t *json) const noexcept;
+ 356 simdjson_inline simdjson_result< bool> parse_bool(const uint8_t *json) const noexcept;
+ 357 simdjson_inline const uint8_t *peek_start() const noexcept;
+ 358 simdjson_inline uint32_t peek_start_length() const noexcept;
+
+ 389 simdjson_inline void advance_scalar(const char *type) noexcept;
+ 390 simdjson_inline void advance_root_scalar(const char *type) noexcept;
+ 391 simdjson_inline void advance_non_root_scalar(const char *type) noexcept;
+
+ 393 simdjson_inline const uint8_t *peek_scalar(const char *type) noexcept;
+ 394 simdjson_inline const uint8_t *peek_root_scalar(const char *type) noexcept;
+ 395 simdjson_inline const uint8_t *peek_non_root_scalar(const char *type) noexcept;
+
+
+ 398 simdjson_inline error_code start_container(uint8_t start_char, const char *incorrect_type_message, const char *type) noexcept;
+ 399 simdjson_inline error_code end_container() noexcept;
+
+ 407 simdjson_inline simdjson_result<const uint8_t *> advance_to_value() noexcept;
+
+ 409 simdjson_inline error_code incorrect_type_error(const char *message) const noexcept;
+ 410 simdjson_inline error_code error_unless_more_tokens(uint32_t tokens=1) const noexcept;
+
+ 412 simdjson_inline bool is_at_start() const noexcept;
+ 419 simdjson_inline bool is_at_iterator_start() const noexcept;
+
+ 428 simdjson_inline bool is_at_key() const noexcept;
+
+ 430 inline void assert_at_start() const noexcept;
+ 431 inline void assert_at_container_start() const noexcept;
+ 432 inline void assert_at_root() const noexcept;
+ 433 inline void assert_at_child() const noexcept;
+ 434 inline void assert_at_next() const noexcept;
+ 435 inline void assert_at_non_root_start() const noexcept;
+
+ 438 simdjson_inline token_position start_position() const noexcept;
+
+ 441 simdjson_inline token_position position() const noexcept;
+ 443 simdjson_inline token_position last_position() const noexcept;
+ 445 simdjson_inline token_position end_position() const noexcept;
+
+
+
+
+
+
+
+
+
+
+
-
-
-
- 462 simdjson_inline simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::value_iterator &&value) noexcept;
-
-
-
-
-
+
+
+
+
+
+ 464 simdjson_inline simdjson_result(SIMDJSON_IMPLEMENTATION::ondemand::value_iterator &&value) noexcept;
+
+
+
+
+
A forward-only JSON array.
A string escaped per JSON rules, terminated with quote (").
|