| 216 | |
| 217 | template<class IndexType> |
| 218 | forceinline bool |
| 219 | BitSet<IndexType>::intersects(const BitSetData* b) const { |
| 220 | for (IndexType i=0; i<_limit; i++) |
| 221 | if (!BitSetData::a(_bits[i],b[_index[i]]).none()) |
| 222 | return true; |
| 223 | return false; |
| 224 | } |
| 225 | |
| 226 | template<class IndexType> |
| 227 | forceinline unsigned long long int |