[#BloombergLP-bdlbb-BlobUtil-append-03] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlbb.adoc[bdlbb]::xref:BloombergLP/bdlbb/BlobUtil.adoc[BlobUtil]::append :relfileprefix: ../../../ :mrdocs: Append all buffers from `source` onto `dest` without copying data. == Synopsis Declared in `<bdlbb_blobutil.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static void append( xref:BloombergLP/bdlbb/Blob.adoc[Blob]* dest, xref:BloombergLP/bdlbb/Blob.adoc[Blob] const& source); ---- == Description Append the specified `source` to the specified `dest`. Note that the data memory from `source` is not copied, but rather new `BlobBuffer`s referring to the same data memory are created and appended to `dest`, hence `dest` is not required to have a `BlobBufferFactory`. == Parameters [cols="1,4"] |=== | Name| Description | *dest* | destination blob | *source* | source blob whose buffers are shared into `dest` |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#