ITamax

Trait ITamax 

Source
pub trait ITamax: Scalar {
    // Required method
    unsafe fn amax(n: i32, x: &[Self], incx: i32) -> i32;
}

Required Methods§

Source

unsafe fn amax(n: i32, x: &[Self], incx: i32) -> i32

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementations on Foreign Types§

Source§

impl ITamax for f32

Source§

unsafe fn amax(n: i32, x: &[Self], incx: i32) -> i32

Source§

impl ITamax for f64

Source§

unsafe fn amax(n: i32, x: &[Self], incx: i32) -> i32

Implementors§