MCPcopy Index your code
hub / github.com/RustPython/RustPython / _not_in

Method _not_in

crates/vm/src/frame.rs:7253–7260  ·  view source on GitHub ↗
(
        &self,
        vm: &VirtualMachine,
        needle: &PyObject,
        haystack: &PyObject,
    )

Source from the content-addressed store, hash-verified

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(

Callers 1

execute_instructionMethod · 0.80

Calls 1

_inMethod · 0.80

Tested by

no test coverage detected