Struct nalgebra::base::dimension::Dynamic[][src]

pub struct Dynamic { /* fields omitted */ }
Expand description

Dim of dynamically-sized algebraic entities.

Implementations

impl Dynamic[src]

pub fn new(value: usize) -> Self[src]

A dynamic size equal to value.

Trait Implementations

impl Add<usize> for Dynamic[src]

type Output = Dynamic

The resulting type after applying the + operator.

fn add(self, rhs: usize) -> Self[src]

Performs the + operation. Read more

impl<T: Scalar, C: Dim> Allocator<T, Dynamic, C> for DefaultAllocator[src]

type Buffer = VecStorage<T, Dynamic, C>

The type of buffer this allocator can instanciate.

unsafe fn allocate_uninitialized(
    nrows: Dynamic,
    ncols: C
) -> MaybeUninit<Self::Buffer>
[src]

Allocates a buffer with the given number of rows and columns without initializing its content.

fn allocate_from_iterator<I: IntoIterator<Item = T>>(
    nrows: Dynamic,
    ncols: C,
    iter: I
) -> Self::Buffer
[src]

Allocates a buffer initialized with the content of the given iterator.

impl<T: Scalar, R: DimName> Allocator<T, R, Dynamic> for DefaultAllocator[src]

type Buffer = VecStorage<T, R, Dynamic>

The type of buffer this allocator can instanciate.

unsafe fn allocate_uninitialized(
    nrows: R,
    ncols: Dynamic
) -> MaybeUninit<Self::Buffer>
[src]

Allocates a buffer with the given number of rows and columns without initializing its content.

fn allocate_from_iterator<I: IntoIterator<Item = T>>(
    nrows: R,
    ncols: Dynamic,
    iter: I
) -> Self::Buffer
[src]

Allocates a buffer initialized with the content of the given iterator.

impl Clone for Dynamic[src]

fn clone(&self) -> Dynamic[src]

Returns a copy of the value. Read more

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Dynamic[src]

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

Formats the value using the given formatter. Read more

impl Dim for Dynamic[src]

fn try_to_usize() -> Option<usize>[src]

Gets the compile-time value of Self. Returns None if it is not known, i.e., if Self = Dynamic. Read more

fn from_usize(dim: usize) -> Self[src]

Builds an instance of Self from a run-time value. Panics if Self is a type-level integer and dim != Self::try_to_usize().unwrap(). Read more

fn value(&self) -> usize[src]

Gets the run-time value of self. For type-level integers, this is the same as Self::try_to_usize().unwrap(). Read more

fn is<D: Dim>() -> bool[src]

impl<D: Dim> DimAdd<D> for Dynamic[src]

type Output = Dynamic

fn add(self, other: D) -> Dynamic[src]

impl<D: DimName> DimAdd<Dynamic> for D[src]

type Output = Dynamic

fn add(self, other: Dynamic) -> Dynamic[src]

impl<D: Dim> DimDiv<D> for Dynamic[src]

type Output = Dynamic

fn div(self, other: D) -> Dynamic[src]

impl<D: DimName> DimDiv<Dynamic> for D[src]

type Output = Dynamic

fn div(self, other: Dynamic) -> Dynamic[src]

impl<D: DimName> DimEq<D, Dynamic> for ShapeConstraint[src]

type Representative = D

This is either equal to D1 or D2, always choosing the one (if any) which is a type-level constant. Read more

impl<D: DimName> DimEq<Dynamic, D> for ShapeConstraint[src]

type Representative = D

This is either equal to D1 or D2, always choosing the one (if any) which is a type-level constant. Read more

impl<D: Dim> DimMax<D> for Dynamic[src]

type Output = Dynamic

fn max(self, other: D) -> Dynamic[src]

impl<D: DimName> DimMax<Dynamic> for D[src]

type Output = Dynamic

fn max(self, other: Dynamic) -> Dynamic[src]

impl<D: Dim> DimMin<D> for Dynamic[src]

type Output = Dynamic

fn min(self, other: D) -> Dynamic[src]

impl<D: DimName> DimMin<Dynamic> for D[src]

type Output = Dynamic

fn min(self, other: Dynamic) -> Dynamic[src]

impl<D: Dim> DimMul<D> for Dynamic[src]

type Output = Dynamic

fn mul(self, other: D) -> Dynamic[src]

impl<D: DimName> DimMul<Dynamic> for D[src]

type Output = Dynamic

fn mul(self, other: Dynamic) -> Dynamic[src]

impl<D: Dim> DimSub<D> for Dynamic[src]

type Output = Dynamic

fn sub(self, other: D) -> Dynamic[src]

impl<D: DimName> DimSub<Dynamic> for D[src]

type Output = Dynamic

fn sub(self, other: Dynamic) -> Dynamic[src]

impl PartialEq<Dynamic> for Dynamic[src]

fn eq(&self, other: &Dynamic) -> bool[src]

This method tests for self and other values to be equal, and is used by ==. Read more

fn ne(&self, other: &Dynamic) -> bool[src]

This method tests for !=.

impl<T: Scalar, CTo, const RFROM: usize, const CFROM: usize> Reallocator<T, Const<RFROM>, Const<CFROM>, Dynamic, CTo> for DefaultAllocator where
    CTo: Dim
[src]

unsafe fn reallocate_copy(
    rto: Dynamic,
    cto: CTo,
    buf: ArrayStorage<T, RFROM, CFROM>
) -> VecStorage<T, Dynamic, CTo>
[src]

Reallocates a buffer of shape (RTo, CTo), possibly reusing a previously allocated buffer buf. Data stored by buf are linearly copied to the output: Read more

impl<T: Scalar, RTo, const RFROM: usize, const CFROM: usize> Reallocator<T, Const<RFROM>, Const<CFROM>, RTo, Dynamic> for DefaultAllocator where
    RTo: DimName
[src]

unsafe fn reallocate_copy(
    rto: RTo,
    cto: Dynamic,
    buf: ArrayStorage<T, RFROM, CFROM>
) -> VecStorage<T, RTo, Dynamic>
[src]

Reallocates a buffer of shape (RTo, CTo), possibly reusing a previously allocated buffer buf. Data stored by buf are linearly copied to the output: Read more

impl<T: Scalar, CFrom: Dim, CTo: Dim> Reallocator<T, Dynamic, CFrom, Dynamic, CTo> for DefaultAllocator[src]

unsafe fn reallocate_copy(
    rto: Dynamic,
    cto: CTo,
    buf: VecStorage<T, Dynamic, CFrom>
) -> VecStorage<T, Dynamic, CTo>
[src]

Reallocates a buffer of shape (RTo, CTo), possibly reusing a previously allocated buffer buf. Data stored by buf are linearly copied to the output: Read more

impl<T: Scalar, CFrom: Dim, RTo: DimName> Reallocator<T, Dynamic, CFrom, RTo, Dynamic> for DefaultAllocator[src]

unsafe fn reallocate_copy(
    rto: RTo,
    cto: Dynamic,
    buf: VecStorage<T, Dynamic, CFrom>
) -> VecStorage<T, RTo, Dynamic>
[src]

Reallocates a buffer of shape (RTo, CTo), possibly reusing a previously allocated buffer buf. Data stored by buf are linearly copied to the output: Read more

impl<T: Scalar, RFrom: DimName, CTo: Dim> Reallocator<T, RFrom, Dynamic, Dynamic, CTo> for DefaultAllocator[src]

unsafe fn reallocate_copy(
    rto: Dynamic,
    cto: CTo,
    buf: VecStorage<T, RFrom, Dynamic>
) -> VecStorage<T, Dynamic, CTo>
[src]

Reallocates a buffer of shape (RTo, CTo), possibly reusing a previously allocated buffer buf. Data stored by buf are linearly copied to the output: Read more

impl<T: Scalar, RFrom: DimName, RTo: DimName> Reallocator<T, RFrom, Dynamic, RTo, Dynamic> for DefaultAllocator[src]

unsafe fn reallocate_copy(
    rto: RTo,
    cto: Dynamic,
    buf: VecStorage<T, RFrom, Dynamic>
) -> VecStorage<T, RTo, Dynamic>
[src]

Reallocates a buffer of shape (RTo, CTo), possibly reusing a previously allocated buffer buf. Data stored by buf are linearly copied to the output: Read more

impl<T, C1, C2> ReshapableStorage<T, Dynamic, C1, Dynamic, C2> for VecStorage<T, Dynamic, C1> where
    T: Scalar,
    C1: Dim,
    C2: Dim
[src]

type Output = VecStorage<T, Dynamic, C2>

The reshaped storage type.

fn reshape_generic(self, nrows: Dynamic, ncols: C2) -> Self::Output[src]

Reshapes the storage into the output storage type.

impl<T, C1, R2> ReshapableStorage<T, Dynamic, C1, R2, Dynamic> for VecStorage<T, Dynamic, C1> where
    T: Scalar,
    C1: Dim,
    R2: DimName
[src]

type Output = VecStorage<T, R2, Dynamic>

The reshaped storage type.

fn reshape_generic(self, nrows: R2, ncols: Dynamic) -> Self::Output[src]

Reshapes the storage into the output storage type.

impl<T, R1, C2> ReshapableStorage<T, R1, Dynamic, Dynamic, C2> for VecStorage<T, R1, Dynamic> where
    T: Scalar,
    R1: DimName,
    C2: Dim
[src]

type Output = VecStorage<T, Dynamic, C2>

The reshaped storage type.

fn reshape_generic(self, nrows: Dynamic, ncols: C2) -> Self::Output[src]

Reshapes the storage into the output storage type.

impl<T, R1, R2> ReshapableStorage<T, R1, Dynamic, R2, Dynamic> for VecStorage<T, R1, Dynamic> where
    T: Scalar,
    R1: DimName,
    R2: DimName
[src]

type Output = VecStorage<T, R2, Dynamic>

The reshaped storage type.

fn reshape_generic(self, nrows: R2, ncols: Dynamic) -> Self::Output[src]

Reshapes the storage into the output storage type.

impl<D: DimName> SameDimension<D, Dynamic> for ShapeConstraint[src]

type Representative = D

This is either equal to D1 or D2, always choosing the one (if any) which is a type-level constant. Read more

impl<D: DimName> SameDimension<Dynamic, D> for ShapeConstraint[src]

type Representative = D

This is either equal to D1 or D2, always choosing the one (if any) which is a type-level constant. Read more

impl<D: DimName> SameNumberOfColumns<D, Dynamic> for ShapeConstraint[src]

type Representative = D

This is either equal to D1 or D2, always choosing the one (if any) which is a type-level constant. Read more

impl<D: DimName> SameNumberOfColumns<Dynamic, D> for ShapeConstraint[src]

type Representative = D

This is either equal to D1 or D2, always choosing the one (if any) which is a type-level constant. Read more

impl<D: DimName> SameNumberOfRows<D, Dynamic> for ShapeConstraint[src]

type Representative = D

This is either equal to D1 or D2, always choosing the one (if any) which is a type-level constant. Read more

impl<D: DimName> SameNumberOfRows<Dynamic, D> for ShapeConstraint[src]

type Representative = D

This is either equal to D1 or D2, always choosing the one (if any) which is a type-level constant. Read more

impl<T: Scalar, C: Dim> Storage<T, Dynamic, C> for VecStorage<T, Dynamic, C> where
    DefaultAllocator: Allocator<T, Dynamic, C, Buffer = Self>, 
[src]

type RStride = U1

The static stride of this storage’s rows.

type CStride = Dynamic

The static stride of this storage’s columns.

fn ptr(&self) -> *const T[src]

The matrix data pointer.

fn shape(&self) -> (Dynamic, C)[src]

The dimension of the matrix at run-time. Arr length of zero indicates the additive identity element of any dimension. Must be equal to Self::dimension() if it is not None. Read more

fn strides(&self) -> (Self::RStride, Self::CStride)[src]

The spacing between consecutive row elements and consecutive column elements. Read more

fn is_contiguous(&self) -> bool[src]

Indicates whether this data buffer stores its elements contiguously.

fn into_owned(self) -> Owned<T, Dynamic, C> where
    DefaultAllocator: Allocator<T, Dynamic, C>, 
[src]

Builds a matrix data storage that does not contain any reference.

fn clone_owned(&self) -> Owned<T, Dynamic, C> where
    DefaultAllocator: Allocator<T, Dynamic, C>, 
[src]

Clones this data storage to one that does not contain any reference.

fn as_slice(&self) -> &[T][src]

Retrieves the data buffer as a contiguous slice. Read more

fn linear_index(&self, irow: usize, icol: usize) -> usize[src]

Compute the index corresponding to the irow-th row and icol-th column of this matrix. The index must be such that the following holds: Read more

unsafe fn get_address_unchecked_linear(&self, i: usize) -> *const T[src]

Gets the address of the i-th matrix component without performing bound-checking.

unsafe fn get_address_unchecked(&self, irow: usize, icol: usize) -> *const T[src]

Gets the address of the i-th matrix component without performing bound-checking.

unsafe fn get_unchecked_linear(&self, i: usize) -> &T[src]

Retrieves a reference to the i-th element without bound-checking.

unsafe fn get_unchecked(&self, irow: usize, icol: usize) -> &T[src]

Retrieves a reference to the i-th element without bound-checking.

impl<T: Scalar, R: DimName> Storage<T, R, Dynamic> for VecStorage<T, R, Dynamic> where
    DefaultAllocator: Allocator<T, R, Dynamic, Buffer = Self>, 
[src]

type RStride = U1

The static stride of this storage’s rows.

type CStride = R

The static stride of this storage’s columns.

fn ptr(&self) -> *const T[src]

The matrix data pointer.

fn shape(&self) -> (R, Dynamic)[src]

The dimension of the matrix at run-time. Arr length of zero indicates the additive identity element of any dimension. Must be equal to Self::dimension() if it is not None. Read more

fn strides(&self) -> (Self::RStride, Self::CStride)[src]

The spacing between consecutive row elements and consecutive column elements. Read more

fn is_contiguous(&self) -> bool[src]

Indicates whether this data buffer stores its elements contiguously.

fn into_owned(self) -> Owned<T, R, Dynamic> where
    DefaultAllocator: Allocator<T, R, Dynamic>, 
[src]

Builds a matrix data storage that does not contain any reference.

fn clone_owned(&self) -> Owned<T, R, Dynamic> where
    DefaultAllocator: Allocator<T, R, Dynamic>, 
[src]

Clones this data storage to one that does not contain any reference.

fn as_slice(&self) -> &[T][src]

Retrieves the data buffer as a contiguous slice. Read more

fn linear_index(&self, irow: usize, icol: usize) -> usize[src]

Compute the index corresponding to the irow-th row and icol-th column of this matrix. The index must be such that the following holds: Read more

unsafe fn get_address_unchecked_linear(&self, i: usize) -> *const T[src]

Gets the address of the i-th matrix component without performing bound-checking.

unsafe fn get_address_unchecked(&self, irow: usize, icol: usize) -> *const T[src]

Gets the address of the i-th matrix component without performing bound-checking.

unsafe fn get_unchecked_linear(&self, i: usize) -> &T[src]

Retrieves a reference to the i-th element without bound-checking.

unsafe fn get_unchecked(&self, irow: usize, icol: usize) -> &T[src]

Retrieves a reference to the i-th element without bound-checking.

impl<T: Scalar, C: Dim> StorageMut<T, Dynamic, C> for VecStorage<T, Dynamic, C> where
    DefaultAllocator: Allocator<T, Dynamic, C, Buffer = Self>, 
[src]

fn ptr_mut(&mut self) -> *mut T[src]

The matrix mutable data pointer.

fn as_mut_slice(&mut self) -> &mut [T][src]

Retrieves the mutable data buffer as a contiguous slice. Read more

unsafe fn get_address_unchecked_linear_mut(&mut self, i: usize) -> *mut T[src]

Gets the mutable address of the i-th matrix component without performing bound-checking.

unsafe fn get_address_unchecked_mut(
    &mut self,
    irow: usize,
    icol: usize
) -> *mut T
[src]

Gets the mutable address of the i-th matrix component without performing bound-checking.

unsafe fn get_unchecked_linear_mut(&mut self, i: usize) -> &mut T[src]

Retrieves a mutable reference to the i-th element without bound-checking.

unsafe fn get_unchecked_mut(&mut self, irow: usize, icol: usize) -> &mut T[src]

Retrieves a mutable reference to the element at (irow, icol) without bound-checking.

unsafe fn swap_unchecked_linear(&mut self, i1: usize, i2: usize)[src]

Swaps two elements using their linear index without bound-checking.

unsafe fn swap_unchecked(
    &mut self,
    row_col1: (usize, usize),
    row_col2: (usize, usize)
)
[src]

Swaps two elements without bound-checking.

impl<T: Scalar, R: DimName> StorageMut<T, R, Dynamic> for VecStorage<T, R, Dynamic> where
    DefaultAllocator: Allocator<T, R, Dynamic, Buffer = Self>, 
[src]

fn ptr_mut(&mut self) -> *mut T[src]

The matrix mutable data pointer.

fn as_mut_slice(&mut self) -> &mut [T][src]

Retrieves the mutable data buffer as a contiguous slice. Read more

unsafe fn get_address_unchecked_linear_mut(&mut self, i: usize) -> *mut T[src]

Gets the mutable address of the i-th matrix component without performing bound-checking.

unsafe fn get_address_unchecked_mut(
    &mut self,
    irow: usize,
    icol: usize
) -> *mut T
[src]

Gets the mutable address of the i-th matrix component without performing bound-checking.

unsafe fn get_unchecked_linear_mut(&mut self, i: usize) -> &mut T[src]

Retrieves a mutable reference to the i-th element without bound-checking.

unsafe fn get_unchecked_mut(&mut self, irow: usize, icol: usize) -> &mut T[src]

Retrieves a mutable reference to the element at (irow, icol) without bound-checking.

unsafe fn swap_unchecked_linear(&mut self, i1: usize, i2: usize)[src]

Swaps two elements using their linear index without bound-checking.

unsafe fn swap_unchecked(
    &mut self,
    row_col1: (usize, usize),
    row_col2: (usize, usize)
)
[src]

Swaps two elements without bound-checking.

impl Sub<usize> for Dynamic[src]

type Output = Dynamic

The resulting type after applying the - operator.

fn sub(self, rhs: usize) -> Self[src]

Performs the - operation. Read more

impl<T: Scalar, C: Dim> ContiguousStorage<T, Dynamic, C> for VecStorage<T, Dynamic, C> where
    DefaultAllocator: Allocator<T, Dynamic, C, Buffer = Self>, 
[src]

impl<T: Scalar, R: DimName> ContiguousStorage<T, R, Dynamic> for VecStorage<T, R, Dynamic> where
    DefaultAllocator: Allocator<T, R, Dynamic, Buffer = Self>, 
[src]

impl<T: Scalar, C: Dim> ContiguousStorageMut<T, Dynamic, C> for VecStorage<T, Dynamic, C> where
    DefaultAllocator: Allocator<T, Dynamic, C, Buffer = Self>, 
[src]

impl<T: Scalar, R: DimName> ContiguousStorageMut<T, R, Dynamic> for VecStorage<T, R, Dynamic> where
    DefaultAllocator: Allocator<T, R, Dynamic, Buffer = Self>, 
[src]

impl Copy for Dynamic[src]

impl Eq for Dynamic[src]

impl IsDynamic for Dynamic[src]

impl IsNotStaticOne for Dynamic[src]

impl StructuralEq for Dynamic[src]

impl StructuralPartialEq for Dynamic[src]

Auto Trait Implementations

impl RefUnwindSafe for Dynamic

impl Send for Dynamic

impl Sync for Dynamic

impl Unpin for Dynamic

impl UnwindSafe for Dynamic

Blanket Implementations

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

pub fn type_id(&self) -> TypeId[src]

Gets the TypeId of self. Read more

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

pub fn borrow(&self) -> &T[src]

Immutably borrows from an owned value. Read more

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

pub fn borrow_mut(&mut self) -> &mut T[src]

Mutably borrows from an owned value. Read more

impl<D> DimAdd<Dynamic> for D where
    D: DimName
[src]

type Output = Dynamic

pub fn add(Self, Dynamic) -> Dynamic[src]

impl<D> DimDiv<Dynamic> for D where
    D: DimName
[src]

type Output = Dynamic

pub fn div(Self, Dynamic) -> Dynamic[src]

impl<D> DimMax<Dynamic> for D where
    D: DimName
[src]

type Output = Dynamic

pub fn max(Self, Dynamic) -> Dynamic[src]

impl<D> DimMin<Dynamic> for D where
    D: DimName
[src]

type Output = Dynamic

pub fn min(Self, Dynamic) -> Dynamic[src]

impl<D> DimMul<Dynamic> for D where
    D: DimName
[src]

type Output = Dynamic

pub fn mul(Self, Dynamic) -> Dynamic[src]

impl<D> DimSub<Dynamic> for D where
    D: DimName
[src]

type Output = Dynamic

pub fn sub(Self, Dynamic) -> Dynamic[src]

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

pub fn from(t: T) -> T[src]

Performs the conversion.

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

pub fn into(self) -> U[src]

Performs the conversion.

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

type Output = T

Should always be Self

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 
[src]

pub fn to_subset(&self) -> Option<SS>[src]

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

pub fn is_in_subset(&self) -> bool[src]

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

pub fn to_subset_unchecked(&self) -> SS[src]

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

pub fn from_subset(element: &SS) -> SP[src]

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

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

type Owned = T

The resulting type after obtaining ownership.

pub fn to_owned(&self) -> T[src]

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

pub fn clone_into(&self, target: &mut T)[src]

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

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

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.

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

Performs the conversion.

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.

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

Performs the conversion.

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

pub fn vzip(self) -> V