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
//! Tier 2.5 decode primitives.

/// Base64 decode kernel body.
pub mod base64;
/// DEFLATE stored-block inflate kernel body.
pub mod inflate;
/// RLE-segment-length scan + start-position prefix-sum (#P-PRIM-RLE).
/// Foundational primitive for block-oriented compression decoders
/// (LZ4 literal/match runs, zstd FSE literal counts, PNG IDAT chunks,
/// snappy raw runs). Unpacks `(length, value)` from packed u32 segment
/// headers — the prefix-sum that produces per-segment output start
/// offsets is `math::prefix_scan` (#5).
pub mod rle_segment_lengths;