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

Method iter_mut

crates/codegen/src/symboltable.rs:447–449  ·  view source on GitHub ↗
(&mut self)

Source from the content-addressed store, hash-verified

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 }
450 // pub fn top(&self) -> Option<&T> {
451 // self.as_ref().last().copied()
452 // }

Callers 11

analyze_symbol_tableMethod · 0.45
found_in_outer_scopeMethod · 0.45
finalize_codeMethod · 0.45
max_stackdepthMethod · 0.45
mark_except_handlersFunction · 0.45
mark_coldFunction · 0.45
convert_pseudo_opsFunction · 0.45
fixup_deref_opargsFunction · 0.45

Calls 2

mapMethod · 0.45
as_mutMethod · 0.45

Tested by

no test coverage detected