[#BloombergLP-bdlbb-BlobUtil-copy-06] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlbb.adoc[bdlbb]::xref:BloombergLP/bdlbb/BlobUtil.adoc[BlobUtil]::copy :relfileprefix: ../../../ :mrdocs: `copy` overloads == Synopses Declared in `<bdlbb_blobutil.h>` Copy into the specified `dst` starting at the specified `dstOffset` the specified `length` bytes from the specified `src`. The behavior is undefined unless `0 <= dstOffset`, `0 <= length`, `dst || 0 == length`, `src || 0 == length`, `!dst || dstOffset <= dst‐>length() ‐ length`, and `src` refers to a buffer with at least `length` bytes. Note that this operation does not require `dst` to have a blob buffer factory in that it does not create or destroy blobs ‐‐ it simply copies data from `src` into `dst`, so `dst` must already have room for `length` bytes of data added at `dstOffset`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static void xref:BloombergLP/bdlbb/BlobUtil/copy-05.adoc[copy]( xref:BloombergLP/bdlbb/Blob.adoc[Blob]* dst, int dstOffset, char const* src, int length); ---- [.small]#xref:BloombergLP/bdlbb/BlobUtil/copy-05.adoc[_» more..._]# Copy the specified `length` bytes starting at the specified `position` in the specified `srcBlob` to the specified `dstBuffer`. The behavior of this function is undefined unless `0 <= length`, `0 <= position`, `position <= srcBlob.totalSize() ‐ length`, and `dstBuffer` has room for `length` bytes. Note that this function does _not_ set `dstBuffer[length]` to 0. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static void xref:BloombergLP/bdlbb/BlobUtil/copy-0d.adoc[copy]( char* dstBuffer, xref:BloombergLP/bdlbb/Blob.adoc[Blob] const& srcBlob, int position, int length); ---- [.small]#xref:BloombergLP/bdlbb/BlobUtil/copy-0d.adoc[_» more..._]# Copy into the specified `dst` starting at the specified `dstOffset` the specified `length` bytes starting at the specified `srcOffset` in the specified `src`. The behavior is undefined unless `0 <= dstOffset`, `0 <= srcOffset`, `0 <= length`, `dst || 0 == length`, `!dst || dstOffset <= dst‐>length() ‐ length`, and `srcOffset <= src‐>length() ‐ length`. Note that this operation does not require `dst` to have a blob buffer factory in that it does not create or destroy blobs ‐‐ it simply copies data from `src` into `dst`, so `dst` must already have room for `length` bytes of data added at `dstOffset`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static void xref:BloombergLP/bdlbb/BlobUtil/copy-09.adoc[copy]( xref:BloombergLP/bdlbb/Blob.adoc[Blob]* dst, int dstOffset, xref:BloombergLP/bdlbb/Blob.adoc[Blob] const& src, int srcOffset, int length); ---- [.small]#xref:BloombergLP/bdlbb/BlobUtil/copy-09.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#