pub union SplitComplexNumber {
    /* private fields */
}

Implementations§

source§

impl SplitComplexNumber

source

pub const fn new(scalar: f32, e01: f32) -> Self

source

pub const fn from_groups(g0: Simd32x2) -> Self

source

pub fn group0(&self) -> Simd32x2

source

pub fn group0_mut(&mut self) -> &mut Simd32x2

Trait Implementations§

source§

impl Add<SplitComplexNumber> for SplitComplexNumber

§

type Output = SplitComplexNumber

The resulting type after applying the + operator.
source§

fn add(self, other: SplitComplexNumber) -> SplitComplexNumber

Performs the + operation. Read more
source§

impl Add<SplitComplexNumber> for f32

§

type Output = SplitComplexNumber

The resulting type after applying the + operator.
source§

fn add(self, other: SplitComplexNumber) -> SplitComplexNumber

Performs the + operation. Read more
source§

impl Add<f32> for SplitComplexNumber

§

type Output = SplitComplexNumber

The resulting type after applying the + operator.
source§

fn add(self, other: f32) -> SplitComplexNumber

Performs the + operation. Read more
source§

impl AddAssign<SplitComplexNumber> for SplitComplexNumber

source§

fn add_assign(&mut self, other: SplitComplexNumber)

Performs the += operation. Read more
source§

impl AddAssign<f32> for SplitComplexNumber

source§

fn add_assign(&mut self, other: f32)

Performs the += operation. Read more
source§

impl Automorphism for SplitComplexNumber

source§

impl Clone for SplitComplexNumber

source§

fn clone(&self) -> SplitComplexNumber

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Conjugation for SplitComplexNumber

source§

impl Debug for SplitComplexNumber

source§

fn fmt(&self, formatter: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Div<SplitComplexNumber> for SplitComplexNumber

§

type Output = SplitComplexNumber

The resulting type after applying the / operator.
source§

fn div(self, other: SplitComplexNumber) -> SplitComplexNumber

Performs the / operation. Read more
source§

impl DivAssign<SplitComplexNumber> for SplitComplexNumber

source§

fn div_assign(&mut self, other: SplitComplexNumber)

Performs the /= operation. Read more
source§

impl Dual for SplitComplexNumber

source§

impl From<[f32; 2]> for SplitComplexNumber

source§

fn from(array: [f32; 2]) -> Self

Converts to this type from the input type.
source§

impl From<SplitComplexNumber> for [f32; 2]

source§

fn from(vector: SplitComplexNumber) -> Self

Converts to this type from the input type.
source§

impl GeometricProduct<SplitComplexNumber> for SplitComplexNumber

source§

impl GeometricProduct<SplitComplexNumber> for f32

source§

impl GeometricProduct<f32> for SplitComplexNumber

source§

impl GeometricQuotient<SplitComplexNumber> for SplitComplexNumber

source§

impl GeometricQuotient<SplitComplexNumber> for f32

source§

impl GeometricQuotient<f32> for SplitComplexNumber

source§

impl Index<usize> for SplitComplexNumber

§

type Output = f32

The returned type after indexing.
source§

fn index(&self, index: usize) -> &Self::Output

Performs the indexing (container[index]) operation. Read more
source§

impl IndexMut<usize> for SplitComplexNumber

source§

fn index_mut(&mut self, index: usize) -> &mut Self::Output

Performs the mutable indexing (container[index]) operation. Read more
source§

impl InnerProduct<SplitComplexNumber> for SplitComplexNumber

source§

impl InnerProduct<SplitComplexNumber> for f32

source§

impl InnerProduct<f32> for SplitComplexNumber

source§

impl Into<f32> for SplitComplexNumber

source§

fn into(self) -> f32

Converts this type into the (usually inferred) input type.
source§

impl Inverse for SplitComplexNumber

source§

impl LeftContraction<SplitComplexNumber> for SplitComplexNumber

source§

impl LeftContraction<SplitComplexNumber> for f32

source§

impl LeftContraction<f32> for SplitComplexNumber

§

type Output = f32

source§

fn left_contraction(self, other: f32) -> f32

source§

impl Magnitude for SplitComplexNumber

§

type Output = f32

source§

fn magnitude(self) -> f32

source§

impl Mul<SplitComplexNumber> for SplitComplexNumber

§

type Output = SplitComplexNumber

The resulting type after applying the * operator.
source§

fn mul(self, other: SplitComplexNumber) -> SplitComplexNumber

Performs the * operation. Read more
source§

impl Mul<f32> for SplitComplexNumber

§

type Output = SplitComplexNumber

The resulting type after applying the * operator.
source§

fn mul(self, other: f32) -> SplitComplexNumber

Performs the * operation. Read more
source§

impl MulAssign<SplitComplexNumber> for SplitComplexNumber

source§

fn mul_assign(&mut self, other: SplitComplexNumber)

Performs the *= operation. Read more
source§

impl MulAssign<f32> for SplitComplexNumber

source§

fn mul_assign(&mut self, other: f32)

Performs the *= operation. Read more
source§

impl Neg for SplitComplexNumber

§

type Output = SplitComplexNumber

The resulting type after applying the - operator.
source§

fn neg(self) -> SplitComplexNumber

Performs the unary - operation. Read more
source§

impl One for SplitComplexNumber

source§

fn one() -> Self

source§

impl OuterProduct<SplitComplexNumber> for SplitComplexNumber

source§

impl OuterProduct<SplitComplexNumber> for f32

source§

impl OuterProduct<f32> for SplitComplexNumber

source§

impl Powi for SplitComplexNumber

source§

impl RegressiveProduct<SplitComplexNumber> for SplitComplexNumber

source§

impl RegressiveProduct<SplitComplexNumber> for f32

source§

impl RegressiveProduct<f32> for SplitComplexNumber

§

type Output = f32

source§

fn regressive_product(self, other: f32) -> f32

source§

impl Reversal for SplitComplexNumber

source§

impl RightContraction<SplitComplexNumber> for SplitComplexNumber

source§

impl RightContraction<SplitComplexNumber> for f32

source§

impl RightContraction<f32> for SplitComplexNumber

source§

impl ScalarProduct<SplitComplexNumber> for SplitComplexNumber

source§

impl ScalarProduct<SplitComplexNumber> for f32

source§

impl ScalarProduct<f32> for SplitComplexNumber

§

type Output = f32

source§

fn scalar_product(self, other: f32) -> f32

source§

impl Signum for SplitComplexNumber

source§

impl SquaredMagnitude for SplitComplexNumber

source§

impl Sub<SplitComplexNumber> for SplitComplexNumber

§

type Output = SplitComplexNumber

The resulting type after applying the - operator.
source§

fn sub(self, other: SplitComplexNumber) -> SplitComplexNumber

Performs the - operation. Read more
source§

impl Sub<SplitComplexNumber> for f32

§

type Output = SplitComplexNumber

The resulting type after applying the - operator.
source§

fn sub(self, other: SplitComplexNumber) -> SplitComplexNumber

Performs the - operation. Read more
source§

impl Sub<f32> for SplitComplexNumber

§

type Output = SplitComplexNumber

The resulting type after applying the - operator.
source§

fn sub(self, other: f32) -> SplitComplexNumber

Performs the - operation. Read more
source§

impl SubAssign<SplitComplexNumber> for SplitComplexNumber

source§

fn sub_assign(&mut self, other: SplitComplexNumber)

Performs the -= operation. Read more
source§

impl SubAssign<f32> for SplitComplexNumber

source§

fn sub_assign(&mut self, other: f32)

Performs the -= operation. Read more
source§

impl Transformation<SplitComplexNumber> for SplitComplexNumber

source§

impl Transformation<SplitComplexNumber> for f32

source§

impl Transformation<f32> for SplitComplexNumber

§

type Output = f32

source§

fn transformation(self, other: f32) -> f32

source§

impl Zero for SplitComplexNumber

source§

fn zero() -> Self

source§

impl Copy for SplitComplexNumber

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for Twhere T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for Twhere T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for Twhere T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T, U> Into<U> for Twhere U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for Twhere T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for Twhere U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for Twhere U: TryFrom<T>,

§

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

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.