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