Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
J
json
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Libraries
json
Commits
314e4e76
Unverified
Commit
314e4e76
authored
Dec 16, 2017
by
Niels Lohmann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
📝
improved documentation for dump and iterator_wrapper
parent
9a51fb4d
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
57 additions
and
5 deletions
+57
-5
doc/examples/dump.cpp
doc/examples/dump.cpp
+11
-0
doc/examples/dump.link
doc/examples/dump.link
+1
-1
doc/examples/dump.output
doc/examples/dump.output
+1
-0
src/json.hpp
src/json.hpp
+44
-4
No files found.
doc/examples/dump.cpp
View file @
314e4e76
...
...
@@ -28,4 +28,15 @@ int main()
std
::
cout
<<
"strings:"
<<
'\n'
<<
j_string
.
dump
()
<<
'\n'
<<
j_string
.
dump
(
-
1
,
' '
,
true
)
<<
'\n'
;
// create JSON value with invalid UTF-8 byte sequence
json
j_invalid
=
"
\xF0\xA4\xAD\xC0
"
;
try
{
std
::
cout
<<
j_invalid
.
dump
()
<<
std
::
endl
;
}
catch
(
json
::
type_error
&
e
)
{
std
::
cout
<<
e
.
what
()
<<
std
::
endl
;
}
}
doc/examples/dump.link
View file @
314e4e76
<a target="_blank" href="https://wandbox.org/permlink/UnV6etCOZZRZpYyB"><b>online</b></a>
\ No newline at end of file
<a target="_blank" href="https://wandbox.org/permlink/mHH9TibITCYPpLwy"><b>online</b></a>
\ No newline at end of file
doc/examples/dump.output
View file @
314e4e76
...
...
@@ -50,3 +50,4 @@ arrays:
strings:
"Hellö 😀!"
"Hell\u00f6 \ud83d\ude00!"
[json.exception.type_error.316] invalid UTF-8 byte at index 3: 0xC0
src/json.hpp
View file @
314e4e76
...
...
@@ -11297,22 +11297,62 @@ class basic_json
reference to the JSON values is returned, so there is no access to the
underlying iterator.
For loop without iterator_wrapper:
@code{cpp}
for (auto it = j_object.begin(); it != j_object.end(); ++it)
{
std::cout << "key: " << it.key() << ", value:" << it.value() << '\n';
}
@endcode
Range-based for loop without iterator proxy:
@code{cpp}
for (auto it : j_object)
{
// "it" is of type json::reference and has no key() member
std::cout << "value: " << it << '\n';
}
@endcode
Range-based for loop with iterator proxy:
@code{cpp}
for (auto it : json::iterator_wrapper(j_object))
{
std::cout << "key: " << it.key() << ", value:" << it.value() << '\n';
}
@endcode
@note When iterating over an array, `key()` will return the index of the
element as string (see example).
@param[in] ref reference to a JSON value
@return iteration proxy object wrapping @a ref with an interface to use in
range-based for loops
@liveexample{The following code shows how the wrapper is used,iterator_wrapper}
@exceptionsafety Strong guarantee: if an exception is thrown, there are no
changes in the JSON value.
@complexity Constant.
@note The name of this function is not yet final and may change in the
future.
*/
static
iteration_proxy
<
iterator
>
iterator_wrapper
(
reference
cont
)
static
iteration_proxy
<
iterator
>
iterator_wrapper
(
reference
ref
)
{
return
iteration_proxy
<
iterator
>
(
cont
);
return
iteration_proxy
<
iterator
>
(
ref
);
}
/*!
@copydoc iterator_wrapper(reference)
*/
static
iteration_proxy
<
const_iterator
>
iterator_wrapper
(
const_reference
cont
)
static
iteration_proxy
<
const_iterator
>
iterator_wrapper
(
const_reference
ref
)
{
return
iteration_proxy
<
const_iterator
>
(
cont
);
return
iteration_proxy
<
const_iterator
>
(
ref
);
}
/// @}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment