//! Raw-buf submodule — the Form-A source of the `raw_buf` kernel-tier //! base-extension module (RawBuf: a mutable indexed flat buffer of //! primitive elements). Parsed by `ailang_surface::parse_raw_buf`, //! round-trip-pinned by `raw_buf_module_round_trips`. /// Source-of-truth Form-A text for the `raw_buf` kernel module. /// Declares the `RawBuf` TypeDef (`param-in (a Int Float Bool)`) and /// the four `(intrinsic)` ops `new`/`get`/`set`/`size`; codegen /// supplies their bodies via the `RawBuf_op__` intercept entries. pub const SOURCE: &str = include_str!("source.ail");