| 81 | } |
| 82 | |
| 83 | void TSIntegerSet::overlap(const TSIntegerSet & otherSet) |
| 84 | { |
| 85 | for (S32 i=0; i<MAX_TS_SET_DWORDS; i++) |
| 86 | bits[i] |= otherSet.bits[i]; |
| 87 | } |
| 88 | |
| 89 | void TSIntegerSet::difference(const TSIntegerSet & otherSet) |
| 90 | { |
no outgoing calls
no test coverage detected