inserts range of elements into array
Declared in <nlohmann/json.hpp>
iterator
insert(
const_iterator pos,
const_iterator first,
const_iterator last);
iterator pointing to the first element inserted, or pos if first == last
| Name | Description |
|---|---|
| pos | iterator before which the range will be inserted |
| first | iterator to the first element of the range to insert |
| last | iterator past the last element of the range to insert |