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

Method iter

crates/codegen/src/symboltable.rs:444–446  ·  view source on GitHub ↗
(&self)

Source from the content-addressed store, hash-verified

442 }
443
444 pub fn iter(&self) -> impl DoubleEndedIterator<Item = &T> + '_ {
445 self.as_ref().iter().copied()
446 }
447 pub fn iter_mut(&mut self) -> impl DoubleEndedIterator<Item = &mut T> + '_ {
448 self.as_mut().iter_mut().map(|x| &mut **x)
449 }

Callers 15

drop_class_freeFunction · 0.45
inline_comprehensionFunction · 0.45
analyze_symbol_tableMethod · 0.45
analyze_symbolMethod · 0.45
found_in_outer_scopeMethod · 0.45
found_in_inner_scopeMethod · 0.45
is_in_async_contextMethod · 0.45
scan_statementMethod · 0.45
scan_comprehensionMethod · 0.45
unparse_argumentsMethod · 0.45

Calls 1

as_refMethod · 0.45