| 75 | } |
| 76 | |
| 77 | void TSIntegerSet::intersect(const TSIntegerSet & otherSet) |
| 78 | { |
| 79 | for (S32 i=0; i<MAX_TS_SET_DWORDS; i++) |
| 80 | bits[i] &= otherSet.bits[i]; |
| 81 | } |
| 82 | |
| 83 | void TSIntegerSet::overlap(const TSIntegerSet & otherSet) |
| 84 | { |
no outgoing calls
no test coverage detected