(&self, vm: &VirtualMachine, needle: &PyObject, haystack: &PyObject)
| 7245 | } |
| 7246 | |
| 7247 | fn _in(&self, vm: &VirtualMachine, needle: &PyObject, haystack: &PyObject) -> PyResult<bool> { |
| 7248 | let found = vm._contains(haystack, needle)?; |
| 7249 | Ok(found) |
| 7250 | } |
| 7251 | |
| 7252 | #[inline(always)] |
| 7253 | fn _not_in( |
no test coverage detected