pub type SimdResult<T> = Result<T, SimdError>;
Result type for SIMD operations
pub enum SimdResult<T> { Ok(T), Err(SimdError), }
Contains the success value
Contains the error value