Method BitAnd
BitAnd(IBitArray)
Perform an AND 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 BitAnd(IBitArray other)
Parameters
Type | Name | Description |
---|---|---|
IBitArray | other | BitArray with which to the And operation. |
Returns
Type | Description |
---|---|
IBitArray | The resulting bit array. |