(&self, item: &PyObject, vm: &VirtualMachine)
| 331 | } |
| 332 | |
| 333 | fn discard(&self, item: &PyObject, vm: &VirtualMachine) -> PyResult<bool> { |
| 334 | self.retry_op_with_frozenset(item, vm, |item, vm| self.content.delete_if_exists(vm, item)) |
| 335 | } |
| 336 | |
| 337 | fn clear(&self) { |
| 338 | self.content.clear() |
nothing calls this directly
no test coverage detected