Skip to main content

bb_ops/syscalls/composite/
mod.rs

1//! `composite` opset - `Bundle` + `Unbundle`. Pack N typed slot values
2//! into one wire-eligible `CompositeValue` envelope, ship through a
3//! single port (so single-port DAG semantics hold), and decompose back
4//! into per-child outputs on the receiver. Domain shared with
5//! `TYPE_COMPOSITE` (`ai.bytesandbrains.composite`).
6
7pub mod bundle;
8pub mod unbundle;