Enum arrayfire::Scalar[][src]

pub enum Scalar {
    F32(f32),
    C32(Complex<f32>),
    F64(f64),
    C64(Complex<f64>),
    B8(bool),
    S32(i32),
    U32(u32),
    U8(u8),
    S64(i64),
    U64(u64),
    S16(i16),
    U16(u16),
}

Scalar value types

Variants

32 bit float

32 bit complex float

64 bit float

64 bit complex float

8 bit boolean

32 bit signed integer

32 bit unsigned integer

8 bit unsigned integer

64 bit signed integer

64 bit unsigned integer

16 bit signed integer

16 bit unsigned integer

Trait Implementations

impl Clone for Scalar
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Copy for Scalar
[src]

impl Debug for Scalar
[src]

Formats the value using the given formatter. Read more

impl PartialEq for Scalar
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations

impl Send for Scalar

impl Sync for Scalar