[#bitdeque-insert-06] = xref:bitdeque.adoc[bitdeque]::insert :relfileprefix: ../ :mrdocs: Insert the bits in [first,last) before the given position.] == Synopsis Declared in `<util/bitdeque.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<typename It> xref:bitdeque/iterator-05.adoc[iterator] insert( xref:bitdeque/const_iterator.adoc[const_iterator] pos, It first, It last); ---- == Return Value Iterator to the first inserted bit. == Parameters [cols="1,4"] |=== | Name| Description | *pos* | Iterator before which the bits are inserted. | *first* | Iterator to the first bit to insert. | *last* | Iterator past the last bit to insert. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#