MCPcopy Index your code
hub / github.com/endbasic/endbasic / do_multiply_double

Method do_multiply_double

core/src/vm/context.rs:956–958  ·  view source on GitHub ↗

Implements the `MultiplyDouble` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

954
955 /// Implements the `MultiplyDouble` opcode.
956 pub(super) fn do_multiply_double(&mut self, instr: u32) {
957 self.do_binary_double_op(instr, bytecode::parse_multiply_double, |l, r| l * r);
958 }
959
960 /// Implements the `MultiplyInteger` opcode.
961 pub(super) fn do_multiply_integer(&mut self, instr: u32) {

Callers 1

execMethod · 0.80

Calls 1

do_binary_double_opMethod · 0.80

Tested by

no test coverage detected