[#BloombergLP-bdljsn-Json-insert-02] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdljsn.adoc[bdljsn]::xref:BloombergLP/bdljsn/Json.adoc[Json]::insert :relfileprefix: ../../../ :mrdocs: Insert into the `JsonArray` held by this object at the specified `position` the values in the range `[first, last)]`, and return an iterator referring to the first newly inserted element. If an exception is thrown, `*this` is unaffected. Throw `bsl::length_error` if `size() + distance(first, last) > maxSize()`. The behavior is undefined unless `isArray()` and `position` is in the range `[theArray().begin() .. theArray().end()]`. == Synopsis Declared in `<bdljsn_json.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class t_INPUT_ITERATOR> xref:BloombergLP/bdljsn/JsonArray/Iterator-0d.adoc[JsonArray::Iterator] insert( xref:BloombergLP/bdljsn/JsonArray/ConstIterator.adoc[JsonArray::ConstIterator] position, t_INPUT_ITERATOR first, t_INPUT_ITERATOR last); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#