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