(
&self,
vm: &VirtualMachine,
needle: &PyObject,
haystack: &PyObject,
)
| 7251 | |
| 7252 | #[inline(always)] |
| 7253 | fn _not_in( |
| 7254 | &self, |
| 7255 | vm: &VirtualMachine, |
| 7256 | needle: &PyObject, |
| 7257 | haystack: &PyObject, |
| 7258 | ) -> PyResult<bool> { |
| 7259 | Ok(!self._in(vm, needle, haystack)?) |
| 7260 | } |
| 7261 | |
| 7262 | #[cfg_attr(feature = "flame-it", flame("Frame"))] |
| 7263 | fn execute_compare( |
no test coverage detected