| 87 | } |
| 88 | |
| 89 | void TSIntegerSet::difference(const TSIntegerSet & otherSet) |
| 90 | { |
| 91 | for (S32 i=0; i<MAX_TS_SET_DWORDS; i++) |
| 92 | bits[i] = (bits[i] | otherSet.bits[i]) & ~(bits[i] & otherSet.bits[i]); |
| 93 | } |
| 94 | |
| 95 | void TSIntegerSet::takeAway(const TSIntegerSet & otherSet) |
| 96 | { |