//! Builder patterns for constructing analysis pipelines and aggregating results.
//!
//! This module provides builders for creating complex analysis structures through
//! composable, type-safe APIs. Builders follow functional patterns with immutable
//! transformations and validated state transitions.
//!
//! Key components:
//! - **Call graph builders**: Construct call graphs from parsed code
//! - **Effect pipelines**: Chain analysis operations with effect tracking
//! - **Unified analysis**: Combine multiple analysis passes into single results
//! - **Parallel builders**: Build structures using parallel processing
//!
//! Builders support both sequential and parallel construction, with validation
//! to ensure correct assembly of complex analysis results.
// Re-export effect pipeline functions for convenient access
pub use ;