R/bitset.R
bitset_count_and.Rd
This non-modifying function returns the number of intersecting elements between two bitsets a and b. This should be faster than writing a$copy()$and(b)$size() as it avoids the memory allocations of $copy().
a
b
a$copy()$and(b)$size()
bitset_count_and(a, b)
a Bitset
Bitset
another Bitset