(zelf: PyRef<Self>, other: ArgIterable, vm: &VirtualMachine)
| 1175 | } |
| 1176 | |
| 1177 | fn __xor__(zelf: PyRef<Self>, other: ArgIterable, vm: &VirtualMachine) -> PyResult<PySet> { |
| 1178 | let zelf = Self::to_set(zelf, vm)?; |
| 1179 | let inner = zelf.symmetric_difference(other, vm)?; |
| 1180 | Ok(PySet { inner }) |
| 1181 | } |
| 1182 | |
| 1183 | fn __and__(zelf: PyRef<Self>, other: ArgIterable, vm: &VirtualMachine) -> PyResult<PySet> { |
| 1184 | let zelf = Self::to_set(zelf, vm)?; |
nothing calls this directly
no test coverage detected