MCPcopy Create free account
hub / github.com/endbasic/endbasic / do_less_equal_double

Method do_less_equal_double

core/src/vm/context.rs:863–865  ·  view source on GitHub ↗

Implements the `LessEqualDouble` opcode.

(&mut self, instr: u32)

Source from the content-addressed store, hash-verified

861
862 /// Implements the `LessEqualDouble` opcode.
863 pub(super) fn do_less_equal_double(&mut self, instr: u32) {
864 self.do_binary_double_predicate_op(instr, bytecode::parse_less_equal_double, |l, r| l <= r);
865 }
866
867 /// Implements the `LessEqualInteger` opcode.
868 pub(super) fn do_less_equal_integer(&mut self, instr: u32) {

Callers 1

execMethod · 0.80

Calls 1

Tested by

no test coverage detected