6.1 KiB
6.1 KiB
basic_json::insert
// (1)
iterator insert(const_iterator pos, const basic_json& val);
iterator insert(const_iterator pos, basic_json&& val);
// (2)
iterator insert(const_iterator pos, size_type cnt, const basic_json& val);
// (3)
iterator insert(const_iterator pos, const_iterator first, const_iterator last);
// (4)
iterator insert(const_iterator pos, initializer_list_t ilist);
// (5)
void insert(const_iterator first, const_iterator last);
- Inserts element
val
to array before iteratorpos
. - Inserts
cnt
copies ofval
to array before iteratorpos
. - Inserts elements from range
[first, last)
to array before iteratorpos
. - Inserts elements from initializer list
ilist
to array before iteratorpos
. - Inserts elements from range
[first, last)
to object.
Parameters
pos
(in)- iterator before which the content will be inserted; may be the
end()
iterator val
(in)- value to insert
cnt
(in)- number of copies of
val
to insert first
(in)- begin of the range of elements to insert
last
(in)- end of the range of elements to insert
ilist
(in)- initializer list to insert the values from
Return value
- iterator pointing to the inserted
val
. - iterator pointing to the first element inserted, or
pos
if#!cpp cnt==0
- iterator pointing to the first element inserted, or
pos
if#!cpp first==last
- iterator pointing to the first element inserted, or
pos
ifilist
is empty - /
Exceptions
- The function can throw the following exceptions:
- Throws
type_error.309
if called on JSON values other than arrays; example:"cannot use insert() with string"
- Throws
invalid_iterator.202
if called on an iterator which does not belong to the current JSON value; example:"iterator does not fit current value"
- Throws
- The function can throw thw following exceptions:
- Throws
type_error.309
if called on JSON values other than arrays; example:"cannot use insert() with string"
- Throws
invalid_iterator.202
if called on an iterator which does not belong to the current JSON value; example:"iterator does not fit current value"
- Throws
- The function can throw thw following exceptions:
- Throws
type_error.309
if called on JSON values other than arrays; example:"cannot use insert() with string"
- Throws
invalid_iterator.202
if called on an iterator which does not belong to the current JSON value; example:"iterator does not fit current value"
- Throws
invalid_iterator.210
iffirst
andlast
do not belong to the same JSON value; example:"iterators do not fit"
- Throws
invalid_iterator.211
iffirst
orlast
are iterators into container for which insert is called; example:"passed iterators may not belong to container"
- Throws
- The function can throw thw following exceptions:
- Throws
type_error.309
if called on JSON values other than arrays; example:"cannot use insert() with string"
- Throws
invalid_iterator.202
if called on an iterator which does not belong to the current JSON value; example:"iterator does not fit current value"
- Throws
- The function can throw thw following exceptions:
- Throws
type_error.309
if called on JSON values other than objects; example:"cannot use insert() with string"
- Throws
invalid_iterator.202
if called on an iterator which does not belong to the current JSON value; example:"iterator does not fit current value"
- Throws
invalid_iterator.210
iffirst
andlast
do not belong to the same JSON value; example:"iterators do not fit"
- Throws
Exception safety
Strong exception safety: if an exception occurs, the original value stays intact.
Complexity
- Constant plus linear in the distance between
pos
and end of the container. - Linear in
cnt
plus linear in the distance betweenpos
and end of the container. - Linear in
#!cpp std::distance(first, last)
plus linear in the distance betweenpos
and end of the container. - Linear in
ilist.size()
plus linear in the distance betweenpos
and end of the container. - Logarithmic:
O(N*log(size() + N))
, whereN
is the number of elements to insert.
Example
??? example
The example shows how `insert()` is used.
```cpp
--8<-- "examples/insert.cpp"
```
Output:
```json
--8<-- "examples/insert.output"
```
??? example
The example shows how `insert()` is used.
```cpp
--8<-- "examples/insert__count.cpp"
```
Output:
```json
--8<-- "examples/insert__count.output"
```
??? example
The example shows how `insert()` is used.
```cpp
--8<-- "examples/insert__range.cpp"
```
Output:
```json
--8<-- "examples/insert__range.output"
```
??? example
The example shows how `insert()` is used.
```cpp
--8<-- "examples/insert__ilist.cpp"
```
Output:
```json
--8<-- "examples/insert__ilist.output"
```
??? example
The example shows how `insert()` is used.
```cpp
--8<-- "examples/insert__range_object.cpp"
```
Output:
```json
--8<-- "examples/insert__range_object.output"
```
Version history
- Added in version 1.0.0.
- Added in version 1.0.0.
- Added in version 1.0.0.
- Added in version 1.0.0.
- Added in version 3.0.0.