Method BitOr
BitOr(IBitArray)
Perform an OR bitwise operation between this BitArray and the one you pass into the function and return the result. Both BitArrays must have the same capacity. This will not change current BitArray values.
Declaration
IBitArray BitOr(IBitArray other)
Parameters
| Type | Name | Description |
|---|---|---|
| IBitArray | other | BitArray with which to the Or operation. |
Returns
| Type | Description |
|---|---|
| IBitArray | The resulting bit array. |