dixscript 1.0.0

Config, code, and encryption in one file — a data interchange format with compile-time functions, AES-256/ChaCha20 built-in, and cross-platform FFI
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

//! Core - DixType, DixValue, and IBuiltinMethod

pub mod dix_type;
pub mod dix_value;
pub mod builtin_method;

// Re-export for convenience
pub use dix_type::DixType;
pub use dix_value::DixValue;
pub use builtin_method::{
    IBuiltinMethod,
    BuiltinMethod,
    BuiltinMethodException,
    BuiltinMethodImpl,
    BuiltinMethodValidator,
    validation_helpers,
};