[#BloombergLP-bdlbb-BlobUtil-append-0e] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlbb.adoc[bdlbb]::xref:BloombergLP/bdlbb/BlobUtil.adoc[BlobUtil]::append :relfileprefix: ../../../ :mrdocs: Append fill bytes to bring `dest` to a greater length. == Synopsis Declared in `<bdlbb_blobutil.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static void append( xref:BloombergLP/bdlbb/Blob.adoc[Blob]* dest, int length, char fill); ---- == Description Append the specified `length` bytes to the specified `dest`, all new bytes are to be set to the specified `fill`. The behavior is undefined unless `length <= dest‐>totalSize() ‐ dest‐>length()` or `0 != dest‐>factory()`. == Parameters [cols="1,4"] |=== | Name| Description | *dest* | destination blob | *length* | number of fill bytes to append | *fill* | byte value used for each appended byte |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#