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

Method do_subtract_double

core/src/vm/context.rs:1112–1114  ·  view source on GitHub ↗

Implements the `SubtractDouble` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

1110
1111 /// Implements the `SubtractDouble` opcode.
1112 pub(super) fn do_subtract_double(&mut self, instr: u32) {
1113 self.do_binary_double_op(instr, bytecode::parse_subtract_double, |l, r| l - r);
1114 }
1115
1116 /// Implements the `SubtractInteger` opcode.
1117 pub(super) fn do_subtract_integer(&mut self, instr: u32) {

Callers 1

execMethod · 0.80

Calls 1

do_binary_double_opMethod · 0.80

Tested by

no test coverage detected