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

Method do_greater_equal_double

core/src/vm/context.rs:784–788  ·  view source on GitHub ↗

Implements the `GreaterEqualDouble` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

782
783 /// Implements the `GreaterEqualDouble` opcode.
784 pub(super) fn do_greater_equal_double(&mut self, instr: u32) {
785 self.do_binary_double_predicate_op(instr, bytecode::parse_greater_equal_double, |l, r| {
786 l >= r
787 });
788 }
789
790 /// Implements the `GreaterEqualInteger` opcode.
791 pub(super) fn do_greater_equal_integer(&mut self, instr: u32) {

Callers 1

execMethod · 0.80

Calls 1

Tested by

no test coverage detected