rhai/src/func/mod.rs

11 lines
192 B
Rust
Raw Normal View History

2021-11-13 15:36:23 +01:00
//! Module defining mechanisms to handle function calls in Rhai.
pub mod args;
pub mod builtin;
pub mod call;
pub mod func;
pub mod hashing;
pub mod native;
pub mod plugin;
pub mod register;