(self,other)
| 40 | res.append(item) |
| 41 | return Container(res) |
| 42 | def insideout(self,other): # !=Intersection != Union item only in x but not in y |
| 43 | res = [] |
| 44 | for item in self.switch: |
| 45 | if item not in other: |
| 46 | res.append(item) |
| 47 | return Container(res) |
| 48 | def outinside(self,other): # != Union != Intersection item in x and y but not in both |
| 49 | res = [] |
| 50 | for item in self.switch: |
no test coverage detected