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

Method emit_vec

language/move-prover/bytecode/src/function_data_builder.rs:162–166  ·  view source on GitHub ↗

Emits a sequence of bytecodes.

(&mut self, bcs: Vec<Bytecode>)

Source from the content-addressed store, hash-verified

160
161 /// Emits a sequence of bytecodes.
162 pub fn emit_vec(&mut self, bcs: Vec<Bytecode>) {
163 for bc in bcs {
164 self.emit(bc);
165 }
166 }
167
168 /// Emits a bytecode via a function which takes a freshly generated attribute id.
169 pub fn emit_with<F>(&mut self, f: F)

Callers

nothing calls this directly

Calls 1

emitMethod · 0.45

Tested by

no test coverage detected