[][src]Struct peroxide::traits::pointer::Redox

pub struct Redox<T: Vector> { /* fields omitted */ }

Implementations

impl Redox<Vec<f64>>[src]

pub fn from_vec(vec: Vec<f64>) -> Self[src]

pub fn red(self) -> Vec<f64>[src]

impl Redox<Vec<Dual>>[src]

pub fn from_vec(vec: Vec<Dual>) -> Self[src]

pub fn red(self) -> Vec<Dual>[src]

Trait Implementations

impl<T: Vector> Add<Redox<T>> for Redox<T>[src]

type Output = Self

The resulting type after applying the + operator.

impl<T: Vector + FPVector> Add<f64> for Redox<T> where
    <T as FPVector>::Scalar: Add<f64, Output = <T as FPVector>::Scalar>, 
[src]

type Output = Self

The resulting type after applying the + operator.

impl<T: Debug + Vector> Debug for Redox<T>[src]

impl<T: Vector> Deref for Redox<T>[src]

type Target = T

The resulting type after dereferencing.

impl<T: Vector + FPVector> Div<Redox<T>> for Redox<T> where
    <T as FPVector>::Scalar: Div<Output = <T as FPVector>::Scalar>, 
[src]

type Output = Self

The resulting type after applying the / operator.

impl<T: Vector + FPVector> Div<f64> for Redox<T> where
    <T as FPVector>::Scalar: Div<f64, Output = <T as FPVector>::Scalar>, 
[src]

type Output = Self

The resulting type after applying the / operator.

impl<T: Vector + FPVector> Mul<Redox<T>> for Redox<T> where
    <T as FPVector>::Scalar: Mul<Output = <T as FPVector>::Scalar>, 
[src]

type Output = Self

The resulting type after applying the * operator.

impl Mul<Redox<Vec<f64>>> for Matrix[src]

type Output = Redox<Vec<f64>>

The resulting type after applying the * operator.

impl<'_> Mul<Redox<Vec<f64>>> for &'_ Matrix[src]

type Output = Redox<Vec<f64>>

The resulting type after applying the * operator.

impl Mul<Redox<Vec<f64>>> for SPMatrix[src]

Matrix multiplication with Redox

type Output = Redox<Vec<f64>>

The resulting type after applying the * operator.

impl<'_> Mul<Redox<Vec<f64>>> for &'_ SPMatrix[src]

type Output = Redox<Vec<f64>>

The resulting type after applying the * operator.

impl<T: Vector + FPVector> Mul<f64> for Redox<T> where
    <T as FPVector>::Scalar: Mul<f64, Output = <T as FPVector>::Scalar>, 
[src]

type Output = Self

The resulting type after applying the * operator.

impl<T: Vector + FPVector> Sub<Redox<T>> for Redox<T> where
    <T as FPVector>::Scalar: Sub<Output = <T as FPVector>::Scalar>, 
[src]

type Output = Self

The resulting type after applying the - operator.

impl<T: Vector + FPVector> Sub<f64> for Redox<T> where
    <T as FPVector>::Scalar: Sub<f64, Output = <T as FPVector>::Scalar>, 
[src]

type Output = Self

The resulting type after applying the - operator.

Auto Trait Implementations

impl<T> RefUnwindSafe for Redox<T> where
    T: RefUnwindSafe

impl<T> Send for Redox<T> where
    T: Send

impl<T> Sync for Redox<T> where
    T: Sync

impl<T> Unpin for Redox<T>

impl<T> UnwindSafe for Redox<T> where
    T: 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<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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,