Trait blas_array2::util::blas_traits::BLASFloat
source · pub trait BLASFloat: Num + NumAssignOps + Send + Sync + Copy + Clone + Default + Debug + Display {
type RealFloat: BLASFloat;
type FFIFloat;
const EPSILON: Self::RealFloat;
// Required methods
fn is_complex() -> bool;
fn conj(x: Self) -> Self;
fn abs(x: Self) -> Self::RealFloat;
}
Expand description
Trait for defining real part float types
Required Associated Types§
Required Associated Constants§
Required Methods§
Object Safety§
This trait is not object safe.