MCPcopy Index your code
hub / github.com/RustPython/RustPython / iter.rs

File iter.rs

crates/vm/src/iter.rs:None–None  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1use crate::{PyObjectRef, PyResult, types::PyComparisonOp, vm::VirtualMachine};
2use itertools::Itertools;
3
4pub trait PyExactSizeIterator<'a>: ExactSizeIterator<Item = &'a PyObjectRef> + Sized {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected