luars 0.17.0

A library for lua 5.5 runtime implementation in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pub mod call;
mod closure;
mod concat;
mod execute_loop;
pub(crate) mod helper;
mod hook;
pub(crate) mod metamethod;
mod number;
mod vararg;

pub use execute_loop::lua_execute;
pub use helper::{get_metamethod_event, get_metatable};
pub use metamethod::TmKind;
pub use metamethod::call_tm_res;
pub use metamethod::call_tm_res1;