uor_addr/composition/e6/mod.rs
1//! CS-E6 — degree-partition filtration (mod-9 partition) per wiki [ADR-061] §(2). Five σ-axes × one shape =
2//! five unary entry points.
3//!
4//! [ADR-061]: https://github.com/UOR-Foundation/UOR-Framework/wiki/ADR-061
5
6pub mod model;
7pub mod pipeline;
8pub mod value;
9pub mod verbs;
10
11pub use pipeline::{
12 compose_e6_filtration, compose_e6_filtration_blake3, compose_e6_filtration_keccak256,
13 compose_e6_filtration_sha3_256, compose_e6_filtration_sha512,
14};