| EwahCompressedBitArrayAnd Method  | 
 
            Returns a new compressed bitmap containing the bitwise AND values of the
            current bitmap with some other bitmap.
            
            The running time is proportional to the sum of the compressed sizes (as
            reported by SizeInBytes).
            
            
 
    Namespace: 
   VelocityDBExtensions.CompressedBitArray
    Assembly:
   VelocityDBExtensions (in VelocityDBExtensions.dll) Version: 8.2.1.0 (8.2.1)
 Syntax
Syntaxpublic EwahCompressedBitArray And(
	EwahCompressedBitArray a
)
Public Function And ( 
	a As EwahCompressedBitArray
) As EwahCompressedBitArray
public:
EwahCompressedBitArray^ And(
	EwahCompressedBitArray^ a
)
member And : 
        a : EwahCompressedBitArray -> EwahCompressedBitArray 
Parameters
- a
- Type: VelocityDBExtensions.CompressedBitArrayEwahCompressedBitArray
 the other bitmap
Return Value
Type: 
EwahCompressedBitArraythe EWAH compressed bitmap
 See Also
See Also