Return the bitwise MINUS of the specified lhs and rhs arrays.
Declared in <bdlc_bitarray.h>
bdlc::BitArray
operator-(
BitArray const& lhs,
BitArray const& rhs);
Return the value that is the bitwise MINUS of the specified lhs and rhs arrays. The length of the resulting bit array will be the maximum of that of lhs and rhs, with any unmatched high-order lhs bits copied unchanged, and any unmatched high-order rhs bits set to 0. Note that this behavior is consistent with zero-extending a copy of the shorter array.
bitwise MINUS of lhs and rhs
| Name | Description |
|---|---|
| lhs | first operand |
| rhs | second operand |