(zelf: PyRef<Self>, other: ArgIterable, vm: &VirtualMachine)
| 1187 | } |
| 1188 | |
| 1189 | fn __or__(zelf: PyRef<Self>, other: ArgIterable, vm: &VirtualMachine) -> PyResult<PySet> { |
| 1190 | let zelf = Self::to_set(zelf, vm)?; |
| 1191 | let inner = zelf.union(other, vm)?; |
| 1192 | Ok(PySet { inner }) |
| 1193 | } |
| 1194 | |
| 1195 | fn __sub__(zelf: PyRef<Self>, other: ArgIterable, vm: &VirtualMachine) -> PyResult<PySet> { |
| 1196 | let zelf = Self::to_set(zelf, vm)?; |