vyre-reference 0.4.1

Pure-Rust CPU reference interpreter for vyre IR — byte-identical oracle for backend conformance and small-data fallback
Documentation
1
2
3
4
5
6
7
8
9
10
//! Standalone bitwise primitive CPU references.

/// Dual references for `primitive.bitwise.and`.
pub mod and;
/// Dual references for `primitive.bitwise.not`.
pub mod not;
/// Dual references for `primitive.bitwise.or`.
pub mod or;
/// Dual references for `primitive.bitwise.xor`.
pub mod xor;