vyre-primitives 0.4.1

Compositional primitives for vyre — marker types (always on) + Tier 2.5 LEGO substrate (feature-gated per domain).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! Back-compat shim — the authoritative modules live one level up
//! (`vyre_primitives::matching::bracket_match`). This `ops` submodule
//! preserves the older import path for consumers written before the
//! flatten.
//!
//! New code should use the parent path.

/// GPU-Native Stack-based Bracket Matching
pub mod bracket_match {
    pub use crate::matching::bracket_match::{
        bracket_match, cpu_ref, pack_u32, CLOSE_BRACE, MATCH_NONE, OPEN_BRACE, OP_ID, OTHER,
    };
}