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

Method do_not_equal_integer

core/src/vm/context.rs:999–1003  ·  view source on GitHub ↗

Implements the `NotEqualInteger` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

997
998 /// Implements the `NotEqualInteger` opcode.
999 pub(super) fn do_not_equal_integer(&mut self, instr: u32) {
1000 self.do_binary_integer_predicate_op(instr, bytecode::parse_not_equal_integer, |l, r| {
1001 l != r
1002 });
1003 }
1004
1005 /// Implements the `NotEqualText` opcode.
1006 pub(super) fn do_not_equal_text(

Callers 1

execMethod · 0.80

Calls 1

Tested by

no test coverage detected