luaur-vm 0.1.3

The Luau register virtual machine and standard library (Rust).
Documentation
#[allow(non_snake_case)]
#[macro_export]
macro_rules! gkey {
    ($n:expr) => {
        core::ptr::addr_of_mut!((*$n).key)
    };
}

pub use gkey;

#[allow(non_snake_case)]
#[macro_export]
macro_rules! gval {
    ($n:expr) => {
        core::ptr::addr_of_mut!((*$n).val)
    };
}

pub use gval;