typr-core 0.5.11

Core type checking and transpilation logic for TypR - a typed superset of R
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Pure utility modules for TypR core
//!
//! These utilities have no system dependencies and are WASM-compatible.

pub mod builder;
pub mod fluent_parser;
#[cfg(feature = "fuzz-gen")]
pub mod program_gen;
pub mod standard_library;

// Re-export commonly used items
pub use builder::*;