//! SIMD trait definitions for type constraints
//!
//! This module defines the core `SimdOps` trait that enables SIMD operations
//! on numeric types throughout the scirs2-core library.
use Float;
use ;
/// Trait for types that can be processed with SIMD operations
///
/// This trait provides the basic constraints required for types to participate
/// in SIMD-accelerated numerical computations. Currently implemented for `f32` and `f64`.
///
/// # Examples
///
/// ```ignore
/// use scirs2_core::simd::traits::SimdOps;
///
/// fn process_simd<T: SimdOps>(data: &[T]) {
/// // SIMD operations can be safely performed on T
/// }
/// ```