luaur_vm/macros/lua_isinteger_64.rs
1use crate::enums::lua_type::lua_Type;
2use crate::functions::lua_type::lua_type;
3
4#[allow(non_snake_case)]
5#[macro_export]
6macro_rules! lua_isinteger_64 {
7 ($L:expr, $n:expr) => {
8 $crate::functions::lua_type::lua_type($L, $n)
9 == ($crate::enums::lua_type::lua_Type::LUA_TINTEGER as i32)
10 };
11}
12
13pub use lua_isinteger_64;