inserts range of elements into array
Synopsis
Declared in <nlohmann/json.hpp>
iterator
insert(
const_iterator pos,
const_iterator first,
const_iterator last);
Return Value
iterator pointing to the first element inserted, or pos if first == last
Parameters
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 |
Created with MrDocs