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

Method iter_without_hint

crates/vm/src/protocol/iter.rs:62–67  ·  view source on GitHub ↗
(
        &'b self,
        vm: &'a VirtualMachine,
    )

Source from the content-addressed store, hash-verified

60 }
61
62 pub fn iter_without_hint<'a, 'b, U>(
63 &'b self,
64 vm: &'a VirtualMachine,
65 ) -> PyResult<PyIterIter<'a, U, &'b PyObject>> {
66 Ok(PyIterIter::new(vm, self.0.borrow(), None))
67 }
68}
69
70impl PyIter<PyObjectRef> {

Callers 1

reduceFunction · 0.80

Calls 2

newFunction · 0.85
borrowMethod · 0.45

Tested by

no test coverage detected