(zelf: PyRef<Self>, other: ArgIterable, vm: &VirtualMachine)
| 1181 | } |
| 1182 | |
| 1183 | fn __and__(zelf: PyRef<Self>, other: ArgIterable, vm: &VirtualMachine) -> PyResult<PySet> { |
| 1184 | let zelf = Self::to_set(zelf, vm)?; |
| 1185 | let inner = zelf.intersection(other, vm)?; |
| 1186 | Ok(PySet { inner }) |
| 1187 | } |
| 1188 | |
| 1189 | fn __or__(zelf: PyRef<Self>, other: ArgIterable, vm: &VirtualMachine) -> PyResult<PySet> { |
| 1190 | let zelf = Self::to_set(zelf, vm)?; |
nothing calls this directly
no test coverage detected