oxilean-codegen 0.1.2

OxiLean code generator - LCNF-based compilation and optimization
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! Serialization and deserialization of the LCNF intermediate representation.
//!
//! Supports three wire formats: [`IrFormat::Text`] (human-readable), [`IrFormat::Json`]
//! (machine-readable UTF-8 JSON), and [`IrFormat::Binary`] (compact binary; write-only
//! in this version).

pub mod functions;
pub mod types;

pub use functions::*;
pub use types::*;