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