Syntax
set aConcatenatedBlob = aBlob.concatBlob(anotherBlob {,anotherBlob});
Semantics

Concatenates an arbitrary number of blobs. Returns a new blob.

The state of the current blob is not changed.

SubstitutablesaBlob, anotherBlobCan be any variable or object attribute having the type Blob
Examples
set aConcatenation = blobSet.b1.concatBlob(blobSet.b2);
  • No labels