qualia_core_db/specialized_libs/shared/mod.rs
1//! Shared utilities for specialized libraries
2//!
3//! This module provides zero-heap utilities that enforce the core architectural
4//! boundary: no Vec/String/Box in hot paths. All operations use fixed-size arrays
5//! and caller-supplied buffers.
6
7pub mod zero_heap;
8pub mod zero_heap_algebra;
9
10pub use zero_heap::{
11 FixedArray, FixedQueue, FixedStack, RingBuffer, MAX_FIXED_ARRAY_SIZE, MAX_RING_BUFFER_SIZE,
12};
13pub use zero_heap_algebra::ZeroHeapMatrix;