mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
@@ -331,6 +331,7 @@ bool ParsedJson::BasicIterator<max_depth>::move_to_key(const char *key) {
|
||||
return true;
|
||||
}
|
||||
} while (next());
|
||||
up();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
@@ -346,6 +347,7 @@ bool ParsedJson::BasicIterator<max_depth>::move_to_key_insensitive(
|
||||
return true;
|
||||
}
|
||||
} while (next());
|
||||
up();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
@@ -362,6 +364,7 @@ bool ParsedJson::BasicIterator<max_depth>::move_to_key(const char *key,
|
||||
return true;
|
||||
}
|
||||
} while (next());
|
||||
up();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
@@ -378,6 +381,7 @@ bool ParsedJson::BasicIterator<max_depth>::move_to_index(uint32_t index) {
|
||||
if (i == index) {
|
||||
return true;
|
||||
}
|
||||
up();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
@@ -1246,6 +1246,7 @@ bool ParsedJson::BasicIterator<max_depth>::move_to_key(const char *key) {
|
||||
return true;
|
||||
}
|
||||
} while (next());
|
||||
up();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
@@ -1261,6 +1262,7 @@ bool ParsedJson::BasicIterator<max_depth>::move_to_key_insensitive(
|
||||
return true;
|
||||
}
|
||||
} while (next());
|
||||
up();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
@@ -1277,6 +1279,7 @@ bool ParsedJson::BasicIterator<max_depth>::move_to_key(const char *key,
|
||||
return true;
|
||||
}
|
||||
} while (next());
|
||||
up();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
@@ -1293,6 +1296,7 @@ bool ParsedJson::BasicIterator<max_depth>::move_to_index(uint32_t index) {
|
||||
if (i == index) {
|
||||
return true;
|
||||
}
|
||||
up();
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user