[#BloombergLP-bslalg-ArrayPrimitives-destructiveMove-08] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslalg.adoc[bslalg]::xref:BloombergLP/bslalg/ArrayPrimitives.adoc[ArrayPrimitives]::destructiveMove :relfileprefix: ../../../ :mrdocs: Destructively move elements into an uninitialized array. == Synopses Declared in `<bslalg_arrayprimitives.h>` Destructively move elements into an uninitialized array. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class ALLOCATOR> static void xref:BloombergLP/bslalg/ArrayPrimitives/destructiveMove-07.adoc[destructiveMove]( bsl::allocator_traits<ALLOCATOR>::pointer toBegin, bsl::allocator_traits<ALLOCATOR>::pointer fromBegin, bsl::allocator_traits<ALLOCATOR>::pointer fromEnd, ALLOCATOR allocator); ---- [.small]#xref:BloombergLP/bslalg/ArrayPrimitives/destructiveMove-07.adoc[_» more..._]# Destructively move elements into an uninitialized array. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template<class TARGET_TYPE> static void xref:BloombergLP/bslalg/ArrayPrimitives/destructiveMove-03.adoc[destructiveMove]( TARGET_TYPE* toBegin, TARGET_TYPE* fromBegin, TARGET_TYPE* fromEnd, xref:BloombergLP/bslma/Allocator.adoc[bslma::Allocator]* allocator); ---- [.small]#xref:BloombergLP/bslalg/ArrayPrimitives/destructiveMove-03.adoc[_» more..._]# == Parameters [cols="1,4"] |=== | Name| Description | *toBegin* | beginning of the uninitialized destination range | *fromBegin* | beginning of the source range | *fromEnd* | end of the source range (one past the last element) | *allocator* | allocator used to supply memory if required |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#