plg_runtime/cell.rs
1//! Tagged 64-bit term words.
2//!
3//! The encoding (tag values, the low-3-bits split, functor packing) is the
4//! word/cell ABI shared with the compiler, so it lives in `plg-shared` as the
5//! single source of truth — codegen emits the same layout into `.rodata` fact
6//! tables and blobs. Re-exported here so the runtime keeps using `crate::cell`.
7
8pub use plg_shared::cell::*;