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

Method do_not_equal_double

core/src/vm/context.rs:994–996  ·  view source on GitHub ↗

Implements the `NotEqualDouble` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

992
993 /// Implements the `NotEqualDouble` opcode.
994 pub(super) fn do_not_equal_double(&mut self, instr: u32) {
995 self.do_binary_double_predicate_op(instr, bytecode::parse_not_equal_double, |l, r| l != r);
996 }
997
998 /// Implements the `NotEqualInteger` opcode.
999 pub(super) fn do_not_equal_integer(&mut self, instr: u32) {

Callers 1

execMethod · 0.80

Calls 1

Tested by

no test coverage detected