AMDG
vicente.botet wrote:
I want to know if two dynamic_bitsets have an element in common. Is there an efficient way to get this?
dynamic_bitset<> bs1, bs2;
intersetcs(bs1, bs2)?
It's a member function.
bs1.intersects(bs2);
In Christ,
Steven Watanabe