| 103 | |
| 104 | template<unsigned int sz> |
| 105 | forceinline void |
| 106 | TinyBitSet<sz>::intersect_with_masks(const BitSetData* a, |
| 107 | const BitSetData* b) { |
| 108 | for (unsigned int i=0U; i<sz; i++) |
| 109 | _bits[i] = BitSetData::a(_bits[i], BitSetData::o(a[i],b[i])); |
| 110 | } |
| 111 | |
| 112 | template<unsigned int sz> |
| 113 | forceinline void |