Simplify API by introducing the Dynamic and Array type aliases.

This commit is contained in:
Stephen Chung
2020-02-25 15:02:27 +08:00
parent 2e296ff9d7
commit 51abc4a2c1
5 changed files with 75 additions and 71 deletions

View File

@@ -45,7 +45,7 @@ mod engine;
mod fn_register;
mod parser;
pub use any::Any;
pub use engine::{Engine, EvalAltResult, Scope};
pub use any::Dynamic;
pub use engine::{Array, Engine, EvalAltResult, Scope};
pub use fn_register::{RegisterBoxFn, RegisterFn};
pub use parser::{ParseError, ParseErrorType, AST};