[][src]Trait arrayfire::FloatingPoint

pub trait FloatingPoint: HasAfEnum {
    fn is_real() -> bool { ... }
fn is_complex() -> bool { ... } }
[]

Trait qualifier to accept either real or complex typed data

Provided methods

fn is_real() -> bool[]

Use to check if trait implementor is real number

fn is_complex() -> bool[]

Use to check if trait implementor is complex number

Implementations on Foreign Types

impl FloatingPoint for Complex<f64>[src][]

impl FloatingPoint for Complex<f32>[src][]

impl FloatingPoint for f64[src][]

impl FloatingPoint for f32[src][]

Implementors