RTasum

Trait RTasum 

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

Required Methods§

Source

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

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 RTasum for f32

Source§

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

Source§

impl RTasum for f64

Source§

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

Implementors§