MCPcopy Create free account
hub / github.com/diem/move / function_handles

Method function_handles

language/move-binary-format/src/views.rs:74–82  ·  view source on GitHub ↗
(
        &self,
    )

Source from the content-addressed store, hash-verified

72 }
73
74 pub fn function_handles(
75 &self,
76 ) -> impl DoubleEndedIterator<Item = FunctionHandleView<'a, T>> + Send {
77 let module = self.module;
78 module
79 .function_handles()
80 .iter()
81 .map(move |function_handle| FunctionHandleView::new(module, function_handle))
82 }
83
84 pub fn field_handles(&self) -> impl DoubleEndedIterator<Item = FieldHandleView<'a, T>> + Send {
85 let module = self.module;

Callers 13

check_function_defMethod · 0.45
check_codeMethod · 0.45
newMethod · 0.45
newMethod · 0.45
verify_module_implMethod · 0.45
verify_script_implMethod · 0.45
verify_module_implMethod · 0.45
verify_script_implMethod · 0.45
newMethod · 0.45

Calls 2

mapMethod · 0.45
iterMethod · 0.45

Tested by

no test coverage detected