(self, other)
| 97 | def intersection_update(self, other): |
| 98 | self.__iand__(other) |
| 99 | def __iand__(self, other): |
| 100 | self.data.intersection_update(ref(item) for item in other) |
| 101 | return self |
| 102 | |
| 103 | def issubset(self, other): |
| 104 | return self.data.issubset(ref(item) for item in other) |
no test coverage detected