Helper for insertion of an iterator
<nlohmann/json.hpp>
template<typename... Args>
iterator
insert_iterator(
const_iterator pos,
Args...&&... args);
: This uses std::distance to support GCC 4.8, see https://github.com/nlohmann/json/pull/1257
| Name | Description |
|---|---|
| pos | a const iterator for a basic_json container |