//! Cache for backend-resident fixed-point graph layouts.
mod cache;
mod entry;
mod retained;
mod stats;
#[cfg(test)]
mod tests;
pub use cache::FixedPointResidentGraphCache;
pub use stats::FixedPointResidentGraphCacheStats;
pub(crate) use retained::retained_graph_bytes;