[go: up one dir, main page]

[][src]Struct accurate::dot::NaiveDot

pub struct NaiveDot<F>(_);

Naive floating point dot product

Examples

use accurate::traits::*;
use accurate::dot::NaiveDot;

let d = NaiveDot::zero() + (1.0, 1.0) + (2.0, 2.0) + (3.0, 3.0);
assert_eq!(14.0f64, d.dot());

Trait Implementations

impl<F> Add<(F, F)> for NaiveDot<F> where
    F: Float
[src]

type Output = Self

The resulting type after applying the + operator.

impl<F> Add<NaiveDot<F>> for NaiveDot<F> where
    F: Float
[src]

type Output = Self

The resulting type after applying the + operator.

impl<F: Clone> Clone for NaiveDot<F>[src]

impl<F: Copy> Copy for NaiveDot<F>[src]

impl<F: Debug> Debug for NaiveDot<F>[src]

impl<F> DotAccumulator<F> for NaiveDot<F> where
    F: Float
[src]

impl<F> From<F> for NaiveDot<F> where
    F: Float
[src]

impl<F> Send for NaiveDot<F> where
    F: Send
[src]

Auto Trait Implementations

impl<F> RefUnwindSafe for NaiveDot<F> where
    F: RefUnwindSafe

impl<F> Sync for NaiveDot<F> where
    F: Sync

impl<F> Unpin for NaiveDot<F> where
    F: Unpin

impl<F> UnwindSafe for NaiveDot<F> where
    F: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<Acc, F> ParallelDotAccumulator<F> for Acc where
    Acc: DotAccumulator<F, Output = Acc> + Add<Acc> + Send
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.