[#BloombergLP-bslalg-DequePrimitives-01-valueInititalizeN] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslalg.adoc[bslalg]::xref:BloombergLP/bslalg/DequePrimitives-01.adoc[DequePrimitives]::valueInititalizeN :relfileprefix: ../../../ :mrdocs: Append the specified `numElements` value‐initialized objects to the deque ending at the specified `fromEnd` iterator, passing the specified `allocator` through to the new elements, and load into the specified `toEnd` an iterator pointing to the end of the data after appending (i.e., `fromEnd + numElements`). The behavior is undefined unless `fromEnd + numElements` is a valid iterator (i.e., the block pointer array holds enough room after the `fromEnd` position to insert `numElements`). == Synopsis Declared in `<bslalg_dequeprimitives.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class ALLOCATOR> static void valueInititalizeN( xref:BloombergLP/bslalg/DequePrimitives-01/Iterator.adoc[Iterator]* toEnd, xref:BloombergLP/bslalg/DequePrimitives-01/Iterator.adoc[Iterator] fromEnd, xref:BloombergLP/bslalg/DequePrimitives-01/size_type.adoc[size_type] numElements, ALLOCATOR allocator); ---- [.small]#Created with https://www.mrdocs.com[MrDocs]#