MCPcopy Create free account
hub / github.com/endbasic/endbasic / do_equal_double

Method do_equal_double

core/src/vm/context.rs:735–737  ·  view source on GitHub ↗

Implements the `EqualDouble` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

733
734 /// Implements the `EqualDouble` opcode.
735 pub(super) fn do_equal_double(&mut self, instr: u32) {
736 self.do_binary_double_predicate_op(instr, bytecode::parse_equal_double, |l, r| l == r);
737 }
738
739 /// Implements the `EqualInteger` opcode.
740 pub(super) fn do_equal_integer(&mut self, instr: u32) {

Callers 1

execMethod · 0.80

Calls 1

Tested by

no test coverage detected