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

Method traverse

crates/vm/src/function/argument.rs:74–76  ·  view source on GitHub ↗
(&self, tracer_fn: &mut TraverseFn<'_>)

Source from the content-addressed store, hash-verified

72
73unsafe impl Traverse for IndexMap<String, PyObjectRef> {
74 fn traverse(&self, tracer_fn: &mut TraverseFn<'_>) {
75 self.values().for_each(|v| v.traverse(tracer_fn));
76 }
77}
78
79/// Conversion from vector of python objects to function arguments.

Callers

nothing calls this directly

Calls 4

valuesMethod · 0.45
countMethod · 0.45
mapMethod · 0.45
iterMethod · 0.45

Tested by

no test coverage detected