dellingr 0.2.0

An embeddable, pure-Rust Lua VM with precise instruction-cost accounting
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Lua's standard library

mod basic;
mod math;
mod string;
mod table;

pub(crate) use basic::{base_ipairs_iter, base_next, open_base};

use crate::State;

pub(crate) fn open_libs(state: &mut State) {
    open_base(state);
    math::open_math(state);
    string::open_string(state);
    table::open_table(state);
}