[#BloombergLP-bdlbb-Blob-removeBuffers] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlbb.adoc[bdlbb]::xref:BloombergLP/bdlbb/Blob.adoc[Blob]::removeBuffers :relfileprefix: ../../../ :mrdocs: Remove the specified `numBuffers` starting at the specified `index`. == Synopsis Declared in `<bdlbb_blob.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void removeBuffers( int index, int numBuffers); ---- == Description Buffers at positions higher than `index` (if any) are shifted down by `numBuffers` index positions. The behavior is undefined unless `0 <= index`, `0 <= numBuffers`, and `index + numBuffers <= numBuffers()`. == Parameters [cols="1,4"] |=== | Name| Description | *index* | starting position of buffers to remove | *numBuffers* | number of buffers to remove |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#