Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
json
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
json
Commits
ce39330f
Commit
ce39330f
authored
May 30, 2017
by
HenryLee
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add converting constructors for iterator
parent
52adf3fd
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
23 deletions
+39
-23
json.hpp
src/json.hpp
+39
-23
No files found.
src/json.hpp
View file @
ce39330f
...
@@ -8053,42 +8053,58 @@ class basic_json
...
@@ -8053,42 +8053,58 @@ class basic_json
}
}
}
}
/*
/*
!
Use operator `const_iterator` instead of `const_iterator(const iterator&
@note The conventional copy constructor is not defined. It is replaced
other) noexcept` to avoid two class definitions for @ref iterator and
by either of the following two converting constructors.
@ref const_iterator.
They support copy from iterator to iterator,
copy from const iterator to const iterator,
This function is only called if this class is an @ref iterator. If this
and conversion from iterator to const iterator.
class is a @ref const_iterator this function is not call
ed.
However conversion from const iterator to iterator is not defin
ed.
*/
*/
operator
const_iterator
()
const
{
const_iterator
ret
;
if
(
m_object
)
/*!
{
@brief converting constructor
ret
.
m_object
=
m_object
;
@param[in] other non-const iterator to copy from
ret
.
m_it
=
m_it
;
@note It is not checked whether @a other is initialized.
}
*/
iter_impl
(
const
iter_impl
<
basic_json
>&
other
)
noexcept
return
ret
;
:
m_object
(
other
.
m_object
),
m_it
(
other
.
m_it
)
}
{
}
/*!
/*!
@brief co
py
constructor
@brief co
nverting
constructor
@param[in] other iterator to copy from
@param[in] other
const
iterator to copy from
@note It is not checked whether @a other is initialized.
@note It is not checked whether @a other is initialized.
*/
*/
iter_impl
(
const
iter_impl
&
other
)
noexcept
iter_impl
<
const
basic_json
>
(
const
iter_impl
<
const
basic_json
>
&
other
)
noexcept
:
m_object
(
other
.
m_object
),
m_it
(
other
.
m_it
)
:
m_object
(
other
.
m_object
),
m_it
(
other
.
m_it
)
{}
{}
/*!
/*!
@brief copy assignment
@brief copy assignment
@param[in,out] other iterator to copy from
@param[in,out] other non-const iterator to copy from
@return const/non-const iterator
@note It is not checked whether @a other is initialized.
*/
iter_impl
&
operator
=
(
iter_impl
<
basic_json
>
other
)
noexcept
(
std
::
is_nothrow_move_constructible
<
pointer
>::
value
and
std
::
is_nothrow_move_assignable
<
pointer
>::
value
and
std
::
is_nothrow_move_constructible
<
internal_iterator
>::
value
and
std
::
is_nothrow_move_assignable
<
internal_iterator
>::
value
)
{
std
::
swap
(
m_object
,
other
.
m_object
);
std
::
swap
(
m_it
,
other
.
m_it
);
return
*
this
;
}
/*!
@brief copy assignment
@param[in,out] other const iterator to copy from
@return const iterator
@note It is not checked whether @a other is initialized.
@note It is not checked whether @a other is initialized.
*/
*/
iter_impl
&
operator
=
(
iter_impl
other
)
noexcept
(
iter_impl
<
const
basic_json
>&
operator
=
(
iter_impl
<
const
basic_json
>
other
)
noexcept
(
std
::
is_nothrow_move_constructible
<
pointer
>::
value
and
std
::
is_nothrow_move_constructible
<
pointer
>::
value
and
std
::
is_nothrow_move_assignable
<
pointer
>::
value
and
std
::
is_nothrow_move_assignable
<
pointer
>::
value
and
std
::
is_nothrow_move_constructible
<
internal_iterator
>::
value
and
std
::
is_nothrow_move_constructible
<
internal_iterator
>::
value
and
...
...
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