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

Method do_less_double

core/src/vm/context.rs:858–860  ·  view source on GitHub ↗

Implements the `LessDouble` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

856
857 /// Implements the `LessDouble` opcode.
858 pub(super) fn do_less_double(&mut self, instr: u32) {
859 self.do_binary_double_predicate_op(instr, bytecode::parse_less_double, |l, r| l < r);
860 }
861
862 /// Implements the `LessEqualDouble` opcode.
863 pub(super) fn do_less_equal_double(&mut self, instr: u32) {

Callers 1

execMethod · 0.80

Calls 1

Tested by

no test coverage detected