luaur-vm 0.1.1

The Luau register virtual machine and standard library (Rust).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use crate::functions::lua_tounsignedx::lua_tounsignedx;

#[allow(non_upper_case_globals)]
pub const LUA_TOUNSIGNED: () = ();

#[allow(non_snake_case)]
#[macro_export]
macro_rules! lua_tounsigned {
    ($l:expr, $i:expr) => {
        unsafe {
            $crate::functions::lua_tounsignedx::lua_tounsignedx($l, $i, core::ptr::null_mut())
        }
    };
}

pub use lua_tounsigned;