zhc_utils 0.1.2

Shared utilities for the ZHC compiler
Documentation
//! Utility data structures and algorithms for compiler infrastructure.
//!
//! This crate provides specialized collections and utilities optimized for
//! compiler workloads, including stack-allocated containers for small data,
//! type-safe indices, and iterator extensions.

pub mod assert_display;
pub mod graphics;
pub mod iter;
pub mod small;
pub mod tracing;

mod change_guard;
mod erasable;
mod fast_hash;
mod fifo;
mod misc;
mod store;
mod type_name;

pub use change_guard::*;
pub use erasable::*;
pub use fast_hash::*;
pub use fifo::*;
pub use misc::*;
pub use store::*;
pub use type_name::*;

pub use zhc_utils_macro::assert_display_is;
pub use zhc_utils_macro::fsm;