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
d9e2b191
Unverified
Commit
d9e2b191
authored
Dec 11, 2020
by
Niels Lohmann
Committed by
GitHub
Dec 11, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #2512 from YarikTH/issue2490
Ranged insert test section is added in unit-ordered_json.cpp
parents
d8d8cbf6
972c15f2
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
40 additions
and
0 deletions
+40
-0
include/nlohmann/ordered_map.hpp
include/nlohmann/ordered_map.hpp
+13
-0
single_include/nlohmann/json.hpp
single_include/nlohmann/json.hpp
+13
-0
test/src/unit-ordered_json.cpp
test/src/unit-ordered_json.cpp
+14
-0
No files found.
include/nlohmann/ordered_map.hpp
View file @
d9e2b191
...
...
@@ -168,6 +168,19 @@ template <class Key, class T, class IgnoredLess = std::less<Key>,
Container
::
push_back
(
value
);
return
{
--
this
->
end
(),
true
};
}
template
<
typename
InputIt
>
using
require_input_iter
=
typename
std
::
enable_if
<
std
::
is_convertible
<
typename
std
::
iterator_traits
<
InputIt
>::
iterator_category
,
std
::
input_iterator_tag
>::
value
>::
type
;
template
<
typename
InputIt
,
typename
=
require_input_iter
<
InputIt
>
>
void
insert
(
InputIt
first
,
InputIt
last
)
{
for
(
auto
it
=
first
;
it
!=
last
;
++
it
)
{
insert
(
*
it
);
}
}
};
}
// namespace nlohmann
single_include/nlohmann/json.hpp
View file @
d9e2b191
...
...
@@ -16634,6 +16634,19 @@ template <class Key, class T, class IgnoredLess = std::less<Key>,
Container::push_back(value);
return {--this->end(), true};
}
template<typename InputIt>
using require_input_iter = typename std::enable_if<std::is_convertible<typename std::iterator_traits<InputIt>::iterator_category,
std::input_iterator_tag>::value>::type;
template<typename InputIt, typename = require_input_iter<InputIt>>
void insert(InputIt first, InputIt last)
{
for (auto it = first; it != last; ++it)
{
insert(*it);
}
}
};
} // namespace nlohmann
...
...
test/src/unit-ordered_json.cpp
View file @
d9e2b191
...
...
@@ -76,4 +76,18 @@ TEST_CASE("ordered_json")
CHECK
(
multi_ordered
.
dump
()
==
"{
\"
z
\"
:1,
\"
m
\"
:2,
\"
y
\"
:4}"
);
CHECK
(
multi_ordered
.
erase
(
"m"
)
==
1
);
CHECK
(
multi_ordered
.
dump
()
==
"{
\"
z
\"
:1,
\"
y
\"
:4}"
);
// Ranged insert test.
// It seems that values shouldn't be overwritten. Only new values are added
json
j1
{{
"c"
,
1
},
{
"b"
,
2
},
{
"a"
,
3
}};
const
json
j2
{{
"c"
,
77
},
{
"d"
,
42
},
{
"a"
,
4
}};
j1
.
insert
(
j2
.
cbegin
(),
j2
.
cend
()
);
CHECK
(
j1
.
size
()
==
4
);
CHECK
(
j1
.
dump
()
==
"{
\"
a
\"
:3,
\"
b
\"
:2,
\"
c
\"
:1,
\"
d
\"
:42}"
);
ordered_json
oj1
{{
"c"
,
1
},
{
"b"
,
2
},
{
"a"
,
3
}};
const
ordered_json
oj2
{{
"c"
,
77
},
{
"d"
,
42
},
{
"a"
,
4
}};
oj1
.
insert
(
oj2
.
cbegin
(),
oj2
.
cend
()
);
CHECK
(
oj1
.
size
()
==
4
);
CHECK
(
oj1
.
dump
()
==
"{
\"
c
\"
:1,
\"
b
\"
:2,
\"
a
\"
:3,
\"
d
\"
:42}"
);
}
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