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

Method do_greater_equal_integer

core/src/vm/context.rs:791–797  ·  view source on GitHub ↗

Implements the `GreaterEqualInteger` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

789
790 /// Implements the `GreaterEqualInteger` opcode.
791 pub(super) fn do_greater_equal_integer(&mut self, instr: u32) {
792 self.do_binary_integer_predicate_op(
793 instr,
794 bytecode::parse_greater_equal_integer,
795 |l, r| l >= r,
796 );
797 }
798
799 /// Implements the `GreaterEqualText` opcode.
800 pub(super) fn do_greater_equal_text(

Callers 1

execMethod · 0.80

Calls 1

Tested by

no test coverage detected