//! # EGraph - Trait Implementations
//!
//! This module contains trait implementations for `EGraph`.
//!
//! ## Implemented Traits
//!
//! - `Default`
//!
//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
use super::types::EGraph;
impl Default for EGraph {
fn default() -> Self {
Self::new()
}
}