What is an efficient method using dynamic_bitset to do the following?bitset1<16> = 0xabcdmask<16> = 0x000fresult<4> = (bitset1 & mask)What is the syntax to remove a subset of bits from a dynamic bitset? Thanks,Graham