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

Method do_greater_double

core/src/vm/context.rs:779–781  ·  view source on GitHub ↗

Implements the `GreaterDouble` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

777
778 /// Implements the `GreaterDouble` opcode.
779 pub(super) fn do_greater_double(&mut self, instr: u32) {
780 self.do_binary_double_predicate_op(instr, bytecode::parse_greater_double, |l, r| l > r);
781 }
782
783 /// Implements the `GreaterEqualDouble` opcode.
784 pub(super) fn do_greater_equal_double(&mut self, instr: u32) {

Callers 1

execMethod · 0.80

Calls 1

Tested by

no test coverage detected