Test this vector's bits against all the corresponding bits in @a vector and return true if any of the bits that are set in @a vector are also set in this vector. @param vector Bit vector of the same size.
| 123 | /// |
| 124 | /// @param vector Bit vector of the same size. |
| 125 | bool testAny( const BitVector& vector ) const { return _test( vector, false ); } |
| 126 | |
| 127 | /// Test this vector's bits against all the corresponding bits |
| 128 | /// in @a vector and return true if all of the bits that are |
no outgoing calls
no test coverage detected