quantrs2_circuit/scirs2_matrices/sparsegatelibrary_traits.rs
1//! # SparseGateLibrary - Trait Implementations
2//!
3//! This module contains trait implementations for `SparseGateLibrary`.
4//!
5//! ## Implemented Traits
6//!
7//! - `Default`
8//!
9//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
10
11use scirs2_core::{
12 parallel_ops::{IndexedParallelIterator, ParallelIterator},
13 simd_ops::*,
14};
15
16use super::types::SparseGateLibrary;
17
18impl Default for SparseGateLibrary {
19 fn default() -> Self {
20 Self::new()
21 }
22}