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

Method functions

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

Source from the content-addressed store, hash-verified

136 }
137
138 pub fn functions(
139 &self,
140 ) -> impl DoubleEndedIterator<Item = FunctionDefinitionView<'a, T>> + Send {
141 let module = self.module;
142 module
143 .function_defs()
144 .iter()
145 .map(move |function_def| FunctionDefinitionView::new(module, function_def))
146 }
147
148 pub fn function_definition(
149 &self,

Callers

nothing calls this directly

Calls 3

mapMethod · 0.45
iterMethod · 0.45
function_defsMethod · 0.45

Tested by

no test coverage detected