(&self, other: ArgIterable, vm: &VirtualMachine)
| 298 | } |
| 299 | |
| 300 | fn issubset(&self, other: ArgIterable, vm: &VirtualMachine) -> PyResult<bool> { |
| 301 | let other_set = Self::from_iter(other.iter(vm)?, vm)?; |
| 302 | self.compare(&other_set, PyComparisonOp::Le, vm) |
| 303 | } |
| 304 | |
| 305 | pub(super) fn isdisjoint(&self, other: ArgIterable, vm: &VirtualMachine) -> PyResult<bool> { |
| 306 | for item in other.iter(vm)? { |