Append numBits copies of value to this array.
Synopsis
Declared in <bdlc_bitarray.h>
void
append(
bool value,
std::size_t numBits);
Description
Append to this array the specified numBits having the specified value. Note that this method has the same behavior as: ` insert(length(), value, numBits); `
Parameters
Name |
Description |
value |
bit value to append |
numBits |
number of bits to append |
Created with MrDocs