Skip to content

Commit

Permalink
json_parser incremental parsing
Browse files Browse the repository at this point in the history
  • Loading branch information
danielaparker committed Nov 11, 2024
1 parent 6116bc6 commit 5aff7e4
Show file tree
Hide file tree
Showing 7 changed files with 356 additions and 297 deletions.
4 changes: 2 additions & 2 deletions doc/ref/corelib/json/operator_at.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

```cpp
proxy_type operator[](const string_view_type& key); (1) (until 0.179.0)
basic_json& operator[](const string_view_type& key); (since 0.179.0)
reference operator[](const string_view_type& key); (since 0.179.0)

const_reference operator[](const string_view_type& key) const; (2)

Expand Down Expand Up @@ -34,7 +34,7 @@ when this operator is used for reading but the key does not exist.

### Examples

#### Assigning to and` object when the key does not exist
#### Assigning to an object when the key does not exist

```cpp
int main()
Expand Down
Loading

0 comments on commit 5aff7e4

Please sign in to comment.