Skip to main content

NalgebraVecMut

Struct NalgebraVecMut 

Source
pub struct NalgebraVecMut<'a, T: NalgebraScalar> { /* private fields */ }

Trait Implementations§

Source§

impl<T: Scalar + NalgebraScalar> AddAssign<&NalgebraVec<T>> for NalgebraVecMut<'_, T>

Source§

fn add_assign(&mut self, rhs: &NalgebraVec<T>)

Performs the += operation. Read more
Source§

impl<T: Scalar + NalgebraScalar> AddAssign<&NalgebraVecRef<'_, T>> for NalgebraVecMut<'_, T>

Source§

fn add_assign(&mut self, rhs: &NalgebraVecRef<'_, T>)

Performs the += operation. Read more
Source§

impl<T: Scalar + NalgebraScalar> AddAssign<NalgebraVec<T>> for NalgebraVecMut<'_, T>

Source§

fn add_assign(&mut self, rhs: NalgebraVec<T>)

Performs the += operation. Read more
Source§

impl<T: Scalar + NalgebraScalar> AddAssign<NalgebraVecRef<'_, T>> for NalgebraVecMut<'_, T>

Source§

fn add_assign(&mut self, rhs: NalgebraVecRef<'_, T>)

Performs the += operation. Read more
Source§

impl<'a, T: Debug + NalgebraScalar> Debug for NalgebraVecMut<'a, T>

Source§

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

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

impl<T: NalgebraScalar> Mul<Scale<T>> for NalgebraVecMut<'_, T>

Source§

type Output = NalgebraVec<T>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Scale<T>) -> Self::Output

Performs the * operation. Read more
Source§

impl<'a, T: NalgebraScalar> MulAssign<Scale<T>> for NalgebraVecMut<'a, T>

Source§

fn mul_assign(&mut self, rhs: Scale<T>)

Performs the *= operation. Read more
Source§

impl<'a, T: PartialEq + NalgebraScalar> PartialEq for NalgebraVecMut<'a, T>

Source§

fn eq(&self, other: &NalgebraVecMut<'a, T>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 (const: unstable) · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl<'a, T: PartialEq + NalgebraScalar> StructuralPartialEq for NalgebraVecMut<'a, T>

Source§

impl<T: Scalar + NalgebraScalar> SubAssign<&NalgebraVec<T>> for NalgebraVecMut<'_, T>

Source§

fn sub_assign(&mut self, rhs: &NalgebraVec<T>)

Performs the -= operation. Read more
Source§

impl<T: Scalar + NalgebraScalar> SubAssign<&NalgebraVecRef<'_, T>> for NalgebraVecMut<'_, T>

Source§

fn sub_assign(&mut self, rhs: &NalgebraVecRef<'_, T>)

Performs the -= operation. Read more
Source§

impl<T: Scalar + NalgebraScalar> SubAssign<NalgebraVec<T>> for NalgebraVecMut<'_, T>

Source§

fn sub_assign(&mut self, rhs: NalgebraVec<T>)

Performs the -= operation. Read more
Source§

impl<T: Scalar + NalgebraScalar> SubAssign<NalgebraVecRef<'_, T>> for NalgebraVecMut<'_, T>

Source§

fn sub_assign(&mut self, rhs: NalgebraVecRef<'_, T>)

Performs the -= operation. Read more
Source§

impl<'a, T: Scalar + NalgebraScalar> VectorCommon for NalgebraVecMut<'a, T>

Source§

type T = T

Source§

type C = NalgebraContext

Source§

type Inner = Matrix<T, Dyn, Const<1>, ViewStorageMut<'a, T, Dyn, Const<1>, Const<1>, Dyn>>

Source§

fn inner(&self) -> &Self::Inner

Source§

impl<'a, T: NalgebraScalar> VectorViewMut<'a> for NalgebraVecMut<'a, T>

Source§

type Owned = NalgebraVec<T>

Source§

type View = NalgebraVecRef<'a, T>

Source§

type Index = NalgebraIndex

Source§

fn copy_from(&mut self, other: &Self::Owned)

Copy values from an owned vector into this view.
Source§

fn copy_from_view(&mut self, other: &Self::View)

Copy values from another vector view into this view.
Source§

fn set_index(&mut self, index: IndexType, value: Self::T)

Set the value at the specified index (sets across all batches when nbatch > 1).
Source§

fn axpy(&mut self, alpha: Self::T, x: &Self::Owned, beta: Self::T)

Compute the AXPY operation: self = alpha * x + beta * self

Auto Trait Implementations§

§

impl<'a, T> !UnwindSafe for NalgebraVecMut<'a, T>

§

impl<'a, T> Freeze for NalgebraVecMut<'a, T>

§

impl<'a, T> RefUnwindSafe for NalgebraVecMut<'a, T>
where T: RefUnwindSafe,

§

impl<'a, T> Send for NalgebraVecMut<'a, T>

§

impl<'a, T> Sync for NalgebraVecMut<'a, T>

§

impl<'a, T> Unpin for NalgebraVecMut<'a, T>
where T: Unpin,

§

impl<'a, T> UnsafeUnpin for NalgebraVecMut<'a, T>

Blanket Implementations§

Source§

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

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

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

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

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

Source§

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

Mutably borrows from an owned value. Read more
Source§

impl<T> ByRef<T> for T

Source§

fn by_ref(&self) -> &T

Source§

impl<ST, DT> CastableFrom<ST, Initialized, Initialized> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<ST, DT> CastableFrom<ST, Uninit, Uninit> for DT
where ST: ?Sized, DT: ?Sized,

Source§

impl<T> DistributionExt for T
where T: ?Sized,

Source§

fn rand<T>(&self, rng: &mut (impl Rng + ?Sized)) -> T
where Self: Distribution<T>,

Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Imply<T> for U
where T: ?Sized, U: ?Sized,

Source§

impl<T, U> Into<U> for T
where 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> IntoEither for T

Source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Read<Exclusive, BecauseExclusive> for T
where T: ?Sized,

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<SS, SP> SupersetOf<SS> for SP
where SS: SubsetOf<SP>,

Source§

fn to_subset(&self) -> Option<SS>

The inverse inclusion map: attempts to construct self from the equivalent element of its superset. Read more
Source§

fn is_in_subset(&self) -> bool

Checks if self is actually part of its subset T (and can be converted to it).
Source§

fn to_subset_unchecked(&self) -> SS

Use with care! Same as self.to_subset but without any property checks. Always succeeds.
Source§

fn from_subset(element: &SS) -> SP

The inclusion map: converts self to the equivalent element of its superset.
Source§

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

Source§

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 T
where U: TryFrom<T>,

Source§

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.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<V, Rhs> VectorMutOpsByValue<Rhs> for V
where V: VectorCommon + AddAssign<Rhs> + SubAssign<Rhs>,