vyre-reference 0.6.2

Pure-Rust CPU reference interpreter for vyre IR; byte-identical oracle for backend conformance
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/// Less-than comparison dual implementation reference.
pub mod reference;

/// Operation ID for less-than-comparison dual references.
pub const OP_ID: &str = "primitive.compare.lt";

/// Dual-reference marker for unsigned less-than comparison.
pub struct LtDualReference;

define_compare_dual_reference!(
    LtDualReference,
    |left, right| left < right,
    super::super::common::lt_bytes
);