dist_agent_lang 1.0.6

A hybrid programming language for decentralized and centralized network integration
Documentation
1
2
3
4
5
6
7
8
9
10
11
pub mod benchmark;
pub mod concurrency;
pub mod memory;
pub mod optimizer;
pub mod profiler;

// Re-export commonly used items
pub use benchmark::{BenchmarkResult, BenchmarkRunner, BenchmarkSuite};
pub use concurrency::{AsyncScheduler, AsyncTask};
pub use memory::{MemoryManager, MemoryStats};
pub use profiler::{ProfileEvent, Profiler};