Dim

Struct Dim 

Source
pub struct Dim<I>
where I: ?Sized,
{ /* private fields */ }
Expand description

Dimension description.

Dim describes the number of axes and the length of each axis in an array. It is also used as an index type.

See also the Dimension trait for its methods and operations.

§Examples

To create an array with a particular dimension, you’d just pass a tuple (in this example (3, 2) is used), which is converted to Dim by the array constructor.

use ndarray::Array2;
use ndarray::Dim;

let mut array = Array2::zeros((3, 2));
array[[0, 0]] = 1.;
assert_eq!(array.raw_dim(), Dim([3, 2]));

Implementations§

Source§

impl Dim<IxDynImpl>

Source

pub fn zeros(n: usize) -> Dim<IxDynImpl>

Create a new dimension value with n axes, all zeros

Trait Implementations§

Source§

impl Add<usize> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 1]>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: usize) -> Dim<[usize; 1]>

Performs the + operation. Read more
Source§

impl<I> Add for Dim<I>
where Dim<I>: Dimension,

Source§

type Output = Dim<I>

The resulting type after applying the + operator.
Source§

fn add(self, rhs: Dim<I>) -> Dim<I>

Performs the + operation. Read more
Source§

impl<'a, I> AddAssign<&'a Dim<I>> for Dim<I>
where Dim<I>: Dimension,

Source§

fn add_assign(&mut self, rhs: &Dim<I>)

Performs the += operation. Read more
Source§

impl AddAssign<usize> for Dim<[usize; 1]>

Source§

fn add_assign(&mut self, rhs: usize)

Performs the += operation. Read more
Source§

impl<I> AddAssign for Dim<I>
where Dim<I>: Dimension,

Source§

fn add_assign(&mut self, rhs: Dim<I>)

Performs the += operation. Read more
Source§

impl<I> Clone for Dim<I>
where I: Clone + ?Sized,

Source§

fn clone(&self) -> Dim<I>

Returns a duplicate 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<I> Debug for Dim<I>
where I: Debug,

Source§

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

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

impl<I> Default for Dim<I>
where I: Default + ?Sized,

Source§

fn default() -> Dim<I>

Returns the “default value” for a type. Read more
Source§

impl<'de, I> Deserialize<'de> for Dim<I>
where I: Deserialize<'de>,

Requires crate feature "serde"

Source§

fn deserialize<D>( deserializer: D, ) -> Result<Dim<I>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<'de> Deserialize<'de> for Dim<IxDynImpl>

Requires crate feature "serde"

Source§

fn deserialize<D>( deserializer: D, ) -> Result<Dim<IxDynImpl>, <D as Deserializer<'de>>::Error>
where D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl<D> DimAdd<D> for Dim<[usize; 0]>
where D: Dimension,

Source§

type Output = D

The sum of the two dimensions.
Source§

impl<D> DimAdd<D> for Dim<IxDynImpl>
where D: Dimension,

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 0]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 1]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 0]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 2]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 0]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 3]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 0]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 4]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 0]>> for Dim<[usize; 5]>

Source§

type Output = Dim<[usize; 5]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 0]>> for Dim<[usize; 6]>

Source§

type Output = Dim<[usize; 6]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 1]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 2]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 1]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 3]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 1]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 4]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 1]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 5]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 1]>> for Dim<[usize; 5]>

Source§

type Output = Dim<[usize; 6]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 1]>> for Dim<[usize; 6]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 2]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 3]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 2]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 4]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 2]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 5]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 2]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 6]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 2]>> for Dim<[usize; 5]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 2]>> for Dim<[usize; 6]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 3]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 4]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 3]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 5]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 3]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 6]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 3]>> for Dim<[usize; 4]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 3]>> for Dim<[usize; 5]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 3]>> for Dim<[usize; 6]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 4]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 5]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 4]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 6]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 4]>> for Dim<[usize; 3]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 4]>> for Dim<[usize; 4]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 4]>> for Dim<[usize; 5]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 4]>> for Dim<[usize; 6]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 5]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 6]>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 5]>> for Dim<[usize; 2]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 5]>> for Dim<[usize; 3]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 5]>> for Dim<[usize; 4]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 5]>> for Dim<[usize; 5]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 5]>> for Dim<[usize; 6]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 6]>> for Dim<[usize; 1]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 6]>> for Dim<[usize; 2]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 6]>> for Dim<[usize; 3]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 6]>> for Dim<[usize; 4]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 6]>> for Dim<[usize; 5]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<[usize; 6]>> for Dim<[usize; 6]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<IxDynImpl>> for Dim<[usize; 1]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<IxDynImpl>> for Dim<[usize; 2]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<IxDynImpl>> for Dim<[usize; 3]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<IxDynImpl>> for Dim<[usize; 4]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<IxDynImpl>> for Dim<[usize; 5]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimAdd<Dim<IxDynImpl>> for Dim<[usize; 6]>

Source§

type Output = Dim<IxDynImpl>

The sum of the two dimensions.
Source§

impl DimMax<Dim<[usize; 0]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 1]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 0]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 2]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 0]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 3]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 0]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 4]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 0]>> for Dim<[usize; 5]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 0]>> for Dim<[usize; 6]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 0]>> for Dim<IxDynImpl>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 1]>> for Dim<[usize; 0]>

Source§

type Output = Dim<[usize; 1]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 1]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 2]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 1]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 3]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 1]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 4]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 1]>> for Dim<[usize; 5]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 1]>> for Dim<[usize; 6]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 1]>> for Dim<IxDynImpl>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 2]>> for Dim<[usize; 0]>

Source§

type Output = Dim<[usize; 2]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 2]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 2]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 2]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 3]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 2]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 4]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 2]>> for Dim<[usize; 5]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 2]>> for Dim<[usize; 6]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 2]>> for Dim<IxDynImpl>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 3]>> for Dim<[usize; 0]>

Source§

type Output = Dim<[usize; 3]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 3]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 3]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 3]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 3]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 3]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 4]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 3]>> for Dim<[usize; 5]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 3]>> for Dim<[usize; 6]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 3]>> for Dim<IxDynImpl>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 4]>> for Dim<[usize; 0]>

Source§

type Output = Dim<[usize; 4]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 4]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 4]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 4]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 4]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 4]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 4]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 4]>> for Dim<[usize; 5]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 4]>> for Dim<[usize; 6]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 4]>> for Dim<IxDynImpl>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 5]>> for Dim<[usize; 0]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 5]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 5]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 5]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 5]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 5]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 5]>> for Dim<[usize; 6]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 5]>> for Dim<IxDynImpl>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 6]>> for Dim<[usize; 0]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 6]>> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 6]>> for Dim<[usize; 2]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 6]>> for Dim<[usize; 3]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 6]>> for Dim<[usize; 4]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 6]>> for Dim<[usize; 5]>

Source§

type Output = Dim<[usize; 6]>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<[usize; 6]>> for Dim<IxDynImpl>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<IxDynImpl>> for Dim<[usize; 0]>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<IxDynImpl>> for Dim<[usize; 1]>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<IxDynImpl>> for Dim<[usize; 2]>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<IxDynImpl>> for Dim<[usize; 3]>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<IxDynImpl>> for Dim<[usize; 4]>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<IxDynImpl>> for Dim<[usize; 5]>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl DimMax<Dim<IxDynImpl>> for Dim<[usize; 6]>

Source§

type Output = Dim<IxDynImpl>

The resulting dimension type after broadcasting.
Source§

impl Dimension for Dim<[usize; 0]>

Source§

const NDIM: Option<usize>

For fixed-size dimension representations (e.g. Ix2), this should be Some(ndim), and for variable-size dimension representations (e.g. IxDyn), this should be None.
Source§

type Pattern = ()

Pattern matching friendly form of the dimension value. Read more
Source§

type Smaller = Dim<[usize; 0]>

Next smaller dimension (if applicable)
Source§

type Larger = Dim<[usize; 1]>

Next larger dimension
Source§

fn ndim(&self) -> usize

Returns the number of dimensions (number of axes).
Source§

fn into_pattern(self) -> <Dim<[usize; 0]> as Dimension>::Pattern

Convert the dimension into a pattern matching friendly value.
Source§

fn zeros(ndim: usize) -> Dim<[usize; 0]>

Creates a dimension of all zeros with the specified ndim. Read more
Source§

fn size(&self) -> usize

Compute the size of the dimension (number of elements)
Source§

fn size_checked(&self) -> Option<usize>

Compute the size while checking for overflow.
Source§

fn as_array_view(&self) -> ArrayBase<ViewRepr<&usize>, Dim<[usize; 1]>>

Borrow as a read-only array view.
Source§

fn as_array_view_mut( &mut self, ) -> ArrayBase<ViewRepr<&mut usize>, Dim<[usize; 1]>>

Borrow as a read-write array view.
Source§

fn into_dyn(self) -> Dim<IxDynImpl>

Convert the dimensional into a dynamic dimensional (IxDyn).
Source§

impl Dimension for Dim<[usize; 1]>

Source§

const NDIM: Option<usize>

For fixed-size dimension representations (e.g. Ix2), this should be Some(ndim), and for variable-size dimension representations (e.g. IxDyn), this should be None.
Source§

type Pattern = usize

Pattern matching friendly form of the dimension value. Read more
Source§

type Smaller = Dim<[usize; 0]>

Next smaller dimension (if applicable)
Source§

type Larger = Dim<[usize; 2]>

Next larger dimension
Source§

fn ndim(&self) -> usize

Returns the number of dimensions (number of axes).
Source§

fn into_pattern(self) -> <Dim<[usize; 1]> as Dimension>::Pattern

Convert the dimension into a pattern matching friendly value.
Source§

fn zeros(ndim: usize) -> Dim<[usize; 1]>

Creates a dimension of all zeros with the specified ndim. Read more
Source§

fn size(&self) -> usize

Compute the size of the dimension (number of elements)
Source§

fn size_checked(&self) -> Option<usize>

Compute the size while checking for overflow.
Source§

fn as_array_view(&self) -> ArrayBase<ViewRepr<&usize>, Dim<[usize; 1]>>

Borrow as a read-only array view.
Source§

fn as_array_view_mut( &mut self, ) -> ArrayBase<ViewRepr<&mut usize>, Dim<[usize; 1]>>

Borrow as a read-write array view.
Source§

fn into_dyn(self) -> Dim<IxDynImpl>

Convert the dimensional into a dynamic dimensional (IxDyn).
Source§

impl Dimension for Dim<[usize; 2]>

Source§

const NDIM: Option<usize>

For fixed-size dimension representations (e.g. Ix2), this should be Some(ndim), and for variable-size dimension representations (e.g. IxDyn), this should be None.
Source§

type Pattern = (usize, usize)

Pattern matching friendly form of the dimension value. Read more
Source§

type Smaller = Dim<[usize; 1]>

Next smaller dimension (if applicable)
Source§

type Larger = Dim<[usize; 3]>

Next larger dimension
Source§

fn ndim(&self) -> usize

Returns the number of dimensions (number of axes).
Source§

fn into_pattern(self) -> <Dim<[usize; 2]> as Dimension>::Pattern

Convert the dimension into a pattern matching friendly value.
Source§

fn zeros(ndim: usize) -> Dim<[usize; 2]>

Creates a dimension of all zeros with the specified ndim. Read more
Source§

fn size(&self) -> usize

Compute the size of the dimension (number of elements)
Source§

fn size_checked(&self) -> Option<usize>

Compute the size while checking for overflow.
Source§

fn as_array_view(&self) -> ArrayBase<ViewRepr<&usize>, Dim<[usize; 1]>>

Borrow as a read-only array view.
Source§

fn as_array_view_mut( &mut self, ) -> ArrayBase<ViewRepr<&mut usize>, Dim<[usize; 1]>>

Borrow as a read-write array view.
Source§

fn into_dyn(self) -> Dim<IxDynImpl>

Convert the dimensional into a dynamic dimensional (IxDyn).
Source§

impl Dimension for Dim<[usize; 3]>

Source§

const NDIM: Option<usize>

For fixed-size dimension representations (e.g. Ix2), this should be Some(ndim), and for variable-size dimension representations (e.g. IxDyn), this should be None.
Source§

type Pattern = (usize, usize, usize)

Pattern matching friendly form of the dimension value. Read more
Source§

type Smaller = Dim<[usize; 2]>

Next smaller dimension (if applicable)
Source§

type Larger = Dim<[usize; 4]>

Next larger dimension
Source§

fn ndim(&self) -> usize

Returns the number of dimensions (number of axes).
Source§

fn into_pattern(self) -> <Dim<[usize; 3]> as Dimension>::Pattern

Convert the dimension into a pattern matching friendly value.
Source§

fn size(&self) -> usize

Compute the size of the dimension (number of elements)
Source§

fn zeros(ndim: usize) -> Dim<[usize; 3]>

Creates a dimension of all zeros with the specified ndim. Read more
Source§

fn size_checked(&self) -> Option<usize>

Compute the size while checking for overflow.
Source§

fn as_array_view(&self) -> ArrayBase<ViewRepr<&usize>, Dim<[usize; 1]>>

Borrow as a read-only array view.
Source§

fn as_array_view_mut( &mut self, ) -> ArrayBase<ViewRepr<&mut usize>, Dim<[usize; 1]>>

Borrow as a read-write array view.
Source§

fn into_dyn(self) -> Dim<IxDynImpl>

Convert the dimensional into a dynamic dimensional (IxDyn).
Source§

impl Dimension for Dim<[usize; 4]>

Source§

const NDIM: Option<usize>

For fixed-size dimension representations (e.g. Ix2), this should be Some(ndim), and for variable-size dimension representations (e.g. IxDyn), this should be None.
Source§

type Pattern = (usize, usize, usize, usize)

Pattern matching friendly form of the dimension value. Read more
Source§

type Smaller = Dim<[usize; 3]>

Next smaller dimension (if applicable)
Source§

type Larger = Dim<[usize; 5]>

Next larger dimension
Source§

fn ndim(&self) -> usize

Returns the number of dimensions (number of axes).
Source§

fn into_pattern(self) -> <Dim<[usize; 4]> as Dimension>::Pattern

Convert the dimension into a pattern matching friendly value.
Source§

fn zeros(ndim: usize) -> Dim<[usize; 4]>

Creates a dimension of all zeros with the specified ndim. Read more
Source§

fn size(&self) -> usize

Compute the size of the dimension (number of elements)
Source§

fn size_checked(&self) -> Option<usize>

Compute the size while checking for overflow.
Source§

fn as_array_view(&self) -> ArrayBase<ViewRepr<&usize>, Dim<[usize; 1]>>

Borrow as a read-only array view.
Source§

fn as_array_view_mut( &mut self, ) -> ArrayBase<ViewRepr<&mut usize>, Dim<[usize; 1]>>

Borrow as a read-write array view.
Source§

fn into_dyn(self) -> Dim<IxDynImpl>

Convert the dimensional into a dynamic dimensional (IxDyn).
Source§

impl Dimension for Dim<[usize; 5]>

Source§

const NDIM: Option<usize>

For fixed-size dimension representations (e.g. Ix2), this should be Some(ndim), and for variable-size dimension representations (e.g. IxDyn), this should be None.
Source§

type Pattern = (usize, usize, usize, usize, usize)

Pattern matching friendly form of the dimension value. Read more
Source§

type Smaller = Dim<[usize; 4]>

Next smaller dimension (if applicable)
Source§

type Larger = Dim<[usize; 6]>

Next larger dimension
Source§

fn ndim(&self) -> usize

Returns the number of dimensions (number of axes).
Source§

fn into_pattern(self) -> <Dim<[usize; 5]> as Dimension>::Pattern

Convert the dimension into a pattern matching friendly value.
Source§

fn zeros(ndim: usize) -> Dim<[usize; 5]>

Creates a dimension of all zeros with the specified ndim. Read more
Source§

fn size(&self) -> usize

Compute the size of the dimension (number of elements)
Source§

fn size_checked(&self) -> Option<usize>

Compute the size while checking for overflow.
Source§

fn as_array_view(&self) -> ArrayBase<ViewRepr<&usize>, Dim<[usize; 1]>>

Borrow as a read-only array view.
Source§

fn as_array_view_mut( &mut self, ) -> ArrayBase<ViewRepr<&mut usize>, Dim<[usize; 1]>>

Borrow as a read-write array view.
Source§

fn into_dyn(self) -> Dim<IxDynImpl>

Convert the dimensional into a dynamic dimensional (IxDyn).
Source§

impl Dimension for Dim<[usize; 6]>

Source§

const NDIM: Option<usize>

For fixed-size dimension representations (e.g. Ix2), this should be Some(ndim), and for variable-size dimension representations (e.g. IxDyn), this should be None.
Source§

type Pattern = (usize, usize, usize, usize, usize, usize)

Pattern matching friendly form of the dimension value. Read more
Source§

type Smaller = Dim<[usize; 5]>

Next smaller dimension (if applicable)
Source§

type Larger = Dim<IxDynImpl>

Next larger dimension
Source§

fn ndim(&self) -> usize

Returns the number of dimensions (number of axes).
Source§

fn into_pattern(self) -> <Dim<[usize; 6]> as Dimension>::Pattern

Convert the dimension into a pattern matching friendly value.
Source§

fn zeros(ndim: usize) -> Dim<[usize; 6]>

Creates a dimension of all zeros with the specified ndim. Read more
Source§

fn size(&self) -> usize

Compute the size of the dimension (number of elements)
Source§

fn size_checked(&self) -> Option<usize>

Compute the size while checking for overflow.
Source§

fn as_array_view(&self) -> ArrayBase<ViewRepr<&usize>, Dim<[usize; 1]>>

Borrow as a read-only array view.
Source§

fn as_array_view_mut( &mut self, ) -> ArrayBase<ViewRepr<&mut usize>, Dim<[usize; 1]>>

Borrow as a read-write array view.
Source§

fn into_dyn(self) -> Dim<IxDynImpl>

Convert the dimensional into a dynamic dimensional (IxDyn).
Source§

impl Dimension for Dim<IxDynImpl>

IxDyn is a “dynamic” index, pretty hard to use when indexing, and memory wasteful, but it allows an arbitrary and dynamic number of axes.

Source§

const NDIM: Option<usize> = None

For fixed-size dimension representations (e.g. Ix2), this should be Some(ndim), and for variable-size dimension representations (e.g. IxDyn), this should be None.
Source§

type Pattern = Dim<IxDynImpl>

Pattern matching friendly form of the dimension value. Read more
Source§

type Smaller = Dim<IxDynImpl>

Next smaller dimension (if applicable)
Source§

type Larger = Dim<IxDynImpl>

Next larger dimension
Source§

fn ndim(&self) -> usize

Returns the number of dimensions (number of axes).
Source§

fn into_pattern(self) -> <Dim<IxDynImpl> as Dimension>::Pattern

Convert the dimension into a pattern matching friendly value.
Source§

fn zeros(ndim: usize) -> Dim<IxDynImpl>

Creates a dimension of all zeros with the specified ndim. Read more
Source§

fn into_dyn(self) -> Dim<IxDynImpl>

Convert the dimensional into a dynamic dimensional (IxDyn).
Source§

fn size(&self) -> usize

Compute the size of the dimension (number of elements)
Source§

fn size_checked(&self) -> Option<usize>

Compute the size while checking for overflow.
Source§

fn as_array_view(&self) -> ArrayBase<ViewRepr<&usize>, Dim<[usize; 1]>>

Borrow as a read-only array view.
Source§

fn as_array_view_mut( &mut self, ) -> ArrayBase<ViewRepr<&mut usize>, Dim<[usize; 1]>>

Borrow as a read-write array view.
Source§

impl<I> Hash for Dim<I>
where I: Hash + ?Sized,

Source§

fn hash<__H>(&self, state: &mut __H)
where __H: Hasher,

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Index<usize> for Dim<[usize; 0]>

Source§

type Output = usize

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<Dim<[usize; 0]> as Index<usize>>::Output

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

impl Index<usize> for Dim<[usize; 1]>

Source§

type Output = usize

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<Dim<[usize; 1]> as Index<usize>>::Output

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

impl Index<usize> for Dim<[usize; 2]>

Source§

type Output = usize

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<Dim<[usize; 2]> as Index<usize>>::Output

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

impl Index<usize> for Dim<[usize; 3]>

Source§

type Output = usize

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<Dim<[usize; 3]> as Index<usize>>::Output

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

impl Index<usize> for Dim<[usize; 4]>

Source§

type Output = usize

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<Dim<[usize; 4]> as Index<usize>>::Output

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

impl Index<usize> for Dim<[usize; 5]>

Source§

type Output = usize

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<Dim<[usize; 5]> as Index<usize>>::Output

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

impl Index<usize> for Dim<[usize; 6]>

Source§

type Output = usize

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<Dim<[usize; 6]> as Index<usize>>::Output

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

impl Index<usize> for Dim<IxDynImpl>

Source§

type Output = <IxDynImpl as Index<usize>>::Output

The returned type after indexing.
Source§

fn index(&self, index: usize) -> &<Dim<IxDynImpl> as Index<usize>>::Output

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

impl IndexMut<usize> for Dim<[usize; 0]>

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <Dim<[usize; 0]> as Index<usize>>::Output

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

impl IndexMut<usize> for Dim<[usize; 1]>

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <Dim<[usize; 1]> as Index<usize>>::Output

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

impl IndexMut<usize> for Dim<[usize; 2]>

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <Dim<[usize; 2]> as Index<usize>>::Output

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

impl IndexMut<usize> for Dim<[usize; 3]>

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <Dim<[usize; 3]> as Index<usize>>::Output

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

impl IndexMut<usize> for Dim<[usize; 4]>

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <Dim<[usize; 4]> as Index<usize>>::Output

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

impl IndexMut<usize> for Dim<[usize; 5]>

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <Dim<[usize; 5]> as Index<usize>>::Output

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

impl IndexMut<usize> for Dim<[usize; 6]>

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <Dim<[usize; 6]> as Index<usize>>::Output

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

impl IndexMut<usize> for Dim<IxDynImpl>

Source§

fn index_mut( &mut self, index: usize, ) -> &mut <Dim<IxDynImpl> as Index<usize>>::Output

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

impl<I> Mul<usize> for Dim<I>
where Dim<I>: Dimension,

Source§

type Output = Dim<I>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: usize) -> Dim<I>

Performs the * operation. Read more
Source§

impl<I> Mul for Dim<I>
where Dim<I>: Dimension,

Source§

type Output = Dim<I>

The resulting type after applying the * operator.
Source§

fn mul(self, rhs: Dim<I>) -> Dim<I>

Performs the * operation. Read more
Source§

impl<'a, I> MulAssign<&'a Dim<I>> for Dim<I>
where Dim<I>: Dimension,

Source§

fn mul_assign(&mut self, rhs: &Dim<I>)

Performs the *= operation. Read more
Source§

impl<I> MulAssign<usize> for Dim<I>
where Dim<I>: Dimension,

Source§

fn mul_assign(&mut self, rhs: usize)

Performs the *= operation. Read more
Source§

impl<I> MulAssign for Dim<I>
where Dim<I>: Dimension,

Source§

fn mul_assign(&mut self, rhs: Dim<I>)

Performs the *= operation. Read more
Source§

impl<I> PartialEq<I> for Dim<I>
where I: PartialEq + ?Sized,

Source§

fn eq(&self, rhs: &I) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · 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<I> PartialEq for Dim<I>
where I: PartialEq + ?Sized,

Source§

fn eq(&self, other: &Dim<I>) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · 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 RemoveAxis for Dim<[usize; 1]>

Source§

fn remove_axis(&self, axis: Axis) -> Dim<[usize; 0]>

Source§

impl RemoveAxis for Dim<[usize; 2]>

Source§

fn remove_axis(&self, axis: Axis) -> Dim<[usize; 1]>

Source§

impl RemoveAxis for Dim<[usize; 3]>

Source§

fn remove_axis(&self, axis: Axis) -> <Dim<[usize; 3]> as Dimension>::Smaller

Source§

impl RemoveAxis for Dim<[usize; 4]>

Source§

fn remove_axis(&self, axis: Axis) -> <Dim<[usize; 4]> as Dimension>::Smaller

Source§

impl RemoveAxis for Dim<[usize; 5]>

Source§

fn remove_axis(&self, axis: Axis) -> <Dim<[usize; 5]> as Dimension>::Smaller

Source§

impl RemoveAxis for Dim<[usize; 6]>

Source§

fn remove_axis(&self, axis: Axis) -> <Dim<[usize; 6]> as Dimension>::Smaller

Source§

impl RemoveAxis for Dim<IxDynImpl>

Source§

fn remove_axis(&self, axis: Axis) -> Dim<IxDynImpl>

Source§

impl<I> Serialize for Dim<I>
where I: Serialize,

Requires crate feature "serde"

Source§

fn serialize<Se>( &self, serializer: Se, ) -> Result<<Se as Serializer>::Ok, <Se as Serializer>::Error>
where Se: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Serialize for Dim<IxDynImpl>

Requires crate feature "serde"

Source§

fn serialize<Se>( &self, serializer: Se, ) -> Result<<Se as Serializer>::Ok, <Se as Serializer>::Error>
where Se: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl<T, Dout> SliceArg<Dim<[usize; 0]>> for SliceInfo<T, Dim<[usize; 0]>, Dout>
where T: AsRef<[SliceInfoElem]>, Dout: Dimension,

Source§

type OutDim = Dout

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl<T, Dout> SliceArg<Dim<[usize; 1]>> for SliceInfo<T, Dim<[usize; 1]>, Dout>
where T: AsRef<[SliceInfoElem]>, Dout: Dimension,

Source§

type OutDim = Dout

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl<T, Dout> SliceArg<Dim<[usize; 2]>> for SliceInfo<T, Dim<[usize; 2]>, Dout>
where T: AsRef<[SliceInfoElem]>, Dout: Dimension,

Source§

type OutDim = Dout

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl<T, Dout> SliceArg<Dim<[usize; 3]>> for SliceInfo<T, Dim<[usize; 3]>, Dout>
where T: AsRef<[SliceInfoElem]>, Dout: Dimension,

Source§

type OutDim = Dout

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl<T, Dout> SliceArg<Dim<[usize; 4]>> for SliceInfo<T, Dim<[usize; 4]>, Dout>
where T: AsRef<[SliceInfoElem]>, Dout: Dimension,

Source§

type OutDim = Dout

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl<T, Dout> SliceArg<Dim<[usize; 5]>> for SliceInfo<T, Dim<[usize; 5]>, Dout>
where T: AsRef<[SliceInfoElem]>, Dout: Dimension,

Source§

type OutDim = Dout

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl<T, Dout> SliceArg<Dim<[usize; 6]>> for SliceInfo<T, Dim<[usize; 6]>, Dout>
where T: AsRef<[SliceInfoElem]>, Dout: Dimension,

Source§

type OutDim = Dout

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl SliceArg<Dim<IxDynImpl>> for [SliceInfoElem]

Source§

type OutDim = Dim<IxDynImpl>

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl<T, Din, Dout> SliceArg<Dim<IxDynImpl>> for SliceInfo<T, Din, Dout>
where T: AsRef<[SliceInfoElem]>, Din: Dimension, Dout: Dimension,

Source§

type OutDim = Dout

Dimensionality of the output array.
Source§

fn in_ndim(&self) -> usize

Returns the number of axes in the input array.
Source§

fn out_ndim(&self) -> usize

Returns the number of axes in the output array.
Source§

impl Sub<usize> for Dim<[usize; 1]>

Source§

type Output = Dim<[usize; 1]>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: usize) -> Dim<[usize; 1]>

Performs the - operation. Read more
Source§

impl<I> Sub for Dim<I>
where Dim<I>: Dimension,

Source§

type Output = Dim<I>

The resulting type after applying the - operator.
Source§

fn sub(self, rhs: Dim<I>) -> Dim<I>

Performs the - operation. Read more
Source§

impl<'a, I> SubAssign<&'a Dim<I>> for Dim<I>
where Dim<I>: Dimension,

Source§

fn sub_assign(&mut self, rhs: &Dim<I>)

Performs the -= operation. Read more
Source§

impl SubAssign<usize> for Dim<[usize; 1]>

Source§

fn sub_assign(&mut self, rhs: usize)

Performs the -= operation. Read more
Source§

impl<I> SubAssign for Dim<I>
where Dim<I>: Dimension,

Source§

fn sub_assign(&mut self, rhs: Dim<I>)

Performs the -= operation. Read more
Source§

impl Zero for Dim<[usize; 0]>

Source§

fn zero() -> Dim<[usize; 0]>

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl Zero for Dim<[usize; 1]>

Source§

fn zero() -> Dim<[usize; 1]>

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl Zero for Dim<[usize; 2]>

Source§

fn zero() -> Dim<[usize; 2]>

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl Zero for Dim<[usize; 3]>

Source§

fn zero() -> Dim<[usize; 3]>

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl Zero for Dim<[usize; 4]>

Source§

fn zero() -> Dim<[usize; 4]>

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl Zero for Dim<[usize; 5]>

Source§

fn zero() -> Dim<[usize; 5]>

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl Zero for Dim<[usize; 6]>

Source§

fn zero() -> Dim<[usize; 6]>

Returns the additive identity element of Self, 0. Read more
Source§

fn is_zero(&self) -> bool

Returns true if self is equal to the additive identity.
Source§

fn set_zero(&mut self)

Sets self to the additive identity element of Self, 0.
Source§

impl<I> Copy for Dim<I>
where I: Copy + ?Sized,

Source§

impl<I> Eq for Dim<I>
where I: Eq + ?Sized,

Source§

impl NdIndex<Dim<[usize; 0]>> for [usize; 0]

Source§

impl NdIndex<Dim<[usize; 0]>> for ()

Source§

impl NdIndex<Dim<[usize; 1]>> for [usize; 1]

Source§

impl NdIndex<Dim<[usize; 1]>> for usize

Source§

impl NdIndex<Dim<[usize; 2]>> for [usize; 2]

Source§

impl NdIndex<Dim<[usize; 2]>> for (usize, usize)

Source§

impl NdIndex<Dim<[usize; 3]>> for [usize; 3]

Source§

impl NdIndex<Dim<[usize; 3]>> for (usize, usize, usize)

Source§

impl NdIndex<Dim<[usize; 4]>> for [usize; 4]

Source§

impl NdIndex<Dim<[usize; 4]>> for (usize, usize, usize, usize)

Source§

impl NdIndex<Dim<[usize; 5]>> for [usize; 5]

Source§

impl NdIndex<Dim<[usize; 5]>> for (usize, usize, usize, usize, usize)

Source§

impl NdIndex<Dim<[usize; 6]>> for [usize; 6]

Source§

impl NdIndex<Dim<[usize; 6]>> for (usize, usize, usize, usize, usize, usize)

Source§

impl<'a> NdIndex<Dim<IxDynImpl>> for &'a [usize]

Source§

impl<'a> NdIndex<Dim<IxDynImpl>> for &'a Dim<IxDynImpl>

Source§

impl<const N: usize> NdIndex<Dim<IxDynImpl>> for [usize; N]

Source§

impl<const N: usize> NdIndex<Dim<IxDynImpl>> for Dim<[usize; N]>

Source§

impl NdIndex<Dim<IxDynImpl>> for usize

Source§

impl<I> StructuralPartialEq for Dim<I>
where I: ?Sized,

Auto Trait Implementations§

§

impl<I> Freeze for Dim<I>
where I: Freeze + ?Sized,

§

impl<I> RefUnwindSafe for Dim<I>
where I: RefUnwindSafe + ?Sized,

§

impl<I> Send for Dim<I>
where I: Send + ?Sized,

§

impl<I> Sync for Dim<I>
where I: Sync + ?Sized,

§

impl<I> Unpin for Dim<I>
where I: Unpin + ?Sized,

§

impl<I> UnwindSafe for Dim<I>
where I: UnwindSafe + ?Sized,

Blanket Implementations§

Source§

impl<T> AlignerFor<1> for T

Source§

type Aligner = AlignTo1<T>

The AlignTo* type which aligns Self to ALIGNMENT.
Source§

impl<T> AlignerFor<1024> for T

Source§

type Aligner = AlignTo1024<T>

The AlignTo* type which aligns Self to ALIGNMENT.
Source§

impl<T> AlignerFor<128> for T

Source§

type Aligner = AlignTo128<T>

The AlignTo* type which aligns Self to ALIGNMENT.
Source§

impl<T> AlignerFor<16> for T

Source§

type Aligner = AlignTo16<T>

The AlignTo* type which aligns Self to ALIGNMENT.
Source§

impl<T> AlignerFor<16384> for T

Source§

type Aligner = AlignTo16384<T>

The AlignTo* type which aligns Self to ALIGNMENT.
Source§

impl<T> AlignerFor<2> for T

Source§

type Aligner = AlignTo2<T>

The AlignTo* type which aligns Self to ALIGNMENT.
Source§

impl<T> AlignerFor<2048> for T

Source§

type Aligner = AlignTo2048<T>

The AlignTo* type which aligns Self to ALIGNMENT.
Source§

impl<T> AlignerFor<256> for T

Source§

type Aligner = AlignTo256<T>

The AlignTo* type which aligns Self to ALIGNMENT.
Source§

impl<T> AlignerFor<32> for T

Source§

type Aligner = AlignTo32<T>

The AlignTo* type which aligns Self to ALIGNMENT.
Source§

impl<T> AlignerFor<32768> for T

Source§

type Aligner = AlignTo32768<T>

The AlignTo* type which aligns Self to ALIGNMENT.
Source§

impl<T> AlignerFor<4> for T

Source§

type Aligner = AlignTo4<T>

The AlignTo* type which aligns Self to ALIGNMENT.
Source§

impl<T> AlignerFor<4096> for T

Source§

type Aligner = AlignTo4096<T>

The AlignTo* type which aligns Self to ALIGNMENT.
Source§

impl<T> AlignerFor<512> for T

Source§

type Aligner = AlignTo512<T>

The AlignTo* type which aligns Self to ALIGNMENT.
Source§

impl<T> AlignerFor<64> for T

Source§

type Aligner = AlignTo64<T>

The AlignTo* type which aligns Self to ALIGNMENT.
Source§

impl<T> AlignerFor<8> for T

Source§

type Aligner = AlignTo8<T>

The AlignTo* type which aligns Self to ALIGNMENT.
Source§

impl<T> AlignerFor<8192> for T

Source§

type Aligner = AlignTo8192<T>

The AlignTo* type which aligns Self to ALIGNMENT.
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<N, R, C, S> ArgminAdd<Matrix<N, R, C, S>, Matrix<N, R, C, <DefaultAllocator as Allocator<R, C>>::Buffer<N>>> for N
where N: Scalar + ClosedAddAssign + Copy, R: Dim, C: Dim, S: Storage<N, R, C>, DefaultAllocator: Allocator<N, R, C>,

Source§

fn add( &self, other: &Matrix<N, R, C, S>, ) -> Matrix<N, R, C, <DefaultAllocator as Allocator<R, C>>::Buffer<N>>

Add a T to self
Source§

impl<N, R, C, S> ArgminDot<Matrix<N, R, C, S>, Matrix<N, R, C, <DefaultAllocator as Allocator<R, C>>::Buffer<N>>> for N
where N: Scalar + Copy + ClosedMulAssign, R: Dim, C: Dim, S: Storage<N, R, C>, DefaultAllocator: Allocator<N, R, C>,

Source§

fn dot( &self, other: &Matrix<N, R, C, S>, ) -> Matrix<N, R, C, <DefaultAllocator as Allocator<R, C>>::Buffer<N>>

Dot/scalar product of T and self
Source§

impl<N, R, C, S> ArgminMul<Matrix<N, R, C, S>, Matrix<N, R, C, <DefaultAllocator as Allocator<R, C>>::Buffer<N>>> for N
where N: Scalar + Copy + ClosedMulAssign, R: Dim, C: Dim, S: Storage<N, R, C>, DefaultAllocator: Allocator<N, R, C>,

Source§

fn mul( &self, other: &Matrix<N, R, C, S>, ) -> Matrix<N, R, C, <DefaultAllocator as Allocator<R, C>>::Buffer<N>>

(Pointwise) Multiply a T with self
Source§

impl<N, R, C, S> ArgminSub<Matrix<N, R, C, S>, Matrix<N, R, C, <DefaultAllocator as Allocator<R, C>>::Buffer<N>>> for N
where N: Scalar + Copy + Sub<Output = N>, R: Dim, C: Dim, S: Storage<N, R, C>, DefaultAllocator: Allocator<N, R, C>,

Source§

fn sub( &self, other: &Matrix<N, R, C, S>, ) -> Matrix<N, R, C, <DefaultAllocator as Allocator<R, C>>::Buffer<N>>

Subtract a T from self
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> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<D> DimMax<D> for D
where D: Dimension,

Source§

type Output = D

The resulting dimension type after broadcasting.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, W> HasTypeWitness<W> for T
where W: MakeTypeWitness<Arg = T>, T: ?Sized,

Source§

const WITNESS: W = W::MAKE

A constant of the type witness
Source§

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

Source§

const TYPE_EQ: TypeEq<T, <T as Identity>::Type> = TypeEq::NEW

Proof that Self is the same type as Self::Type, provides methods for casting between Self and Self::Type.
Source§

type Type = T

The same type as Self, used to emulate type equality bounds (T == U) with associated type equality constraints (T: Identity<Type = U>).
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<D> IntoDimension for D
where D: Dimension,

Source§

type Dim = D

Source§

fn into_dimension(self) -> D

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<N, A, B> MulAcc<A, B> for N
where &'x A: for<'x> Mul<&'x B, Output = N>, N: AddAssign,

Source§

fn mul_acc(&mut self, a: &A, b: &B)

Multiply and accumulate in this variable, formally *self += a * b.
Source§

impl<D> NdIndex<D> for D
where D: Dimension,

Source§

fn index_checked(&self, dim: &D, strides: &D) -> Option<isize>

Source§

fn index_unchecked(&self, strides: &D) -> isize

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<'a, T> RCowCompatibleRef<'a> for T
where T: Clone + 'a,

Source§

type RefC = &'a T

The (preferably) ffi-safe equivalent of &Self.
Source§

type ROwned = T

The owned version of Self::RefC.
Source§

fn as_c_ref(from: &'a T) -> <T as RCowCompatibleRef<'a>>::RefC

Converts a reference to an FFI-safe type
Source§

fn as_rust_ref(from: <T as RCowCompatibleRef<'a>>::RefC) -> &'a T

Converts an FFI-safe type to a reference
Source§

impl<S> ROExtAcc for S

Source§

fn f_get<F>(&self, offset: FieldOffset<S, F, Aligned>) -> &F

Gets a reference to a field, determined by offset. Read more
Source§

fn f_get_mut<F>(&mut self, offset: FieldOffset<S, F, Aligned>) -> &mut F

Gets a muatble reference to a field, determined by offset. Read more
Source§

fn f_get_ptr<F, A>(&self, offset: FieldOffset<S, F, A>) -> *const F

Gets a const pointer to a field, the field is determined by offset. Read more
Source§

fn f_get_mut_ptr<F, A>(&mut self, offset: FieldOffset<S, F, A>) -> *mut F

Gets a mutable pointer to a field, determined by offset. Read more
Source§

impl<S> ROExtOps<Aligned> for S

Source§

fn f_replace<F>(&mut self, offset: FieldOffset<S, F, Aligned>, value: F) -> F

Replaces a field (determined by offset) with value, returning the previous value of the field. Read more
Source§

fn f_swap<F>(&mut self, offset: FieldOffset<S, F, Aligned>, right: &mut S)

Swaps a field (determined by offset) with the same field in right. Read more
Source§

fn f_get_copy<F>(&self, offset: FieldOffset<S, F, Aligned>) -> F
where F: Copy,

Gets a copy of a field (determined by offset). The field is determined by offset. Read more
Source§

impl<S> ROExtOps<Unaligned> for S

Source§

fn f_replace<F>(&mut self, offset: FieldOffset<S, F, Unaligned>, value: F) -> F

Replaces a field (determined by offset) with value, returning the previous value of the field. Read more
Source§

fn f_swap<F>(&mut self, offset: FieldOffset<S, F, Unaligned>, right: &mut S)

Swaps a field (determined by offset) with the same field in right. Read more
Source§

fn f_get_copy<F>(&self, offset: FieldOffset<S, F, Unaligned>) -> F
where F: Copy,

Gets a copy of a field (determined by offset). The field is determined by offset. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

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

Source§

fn eq_id(&self, other: &Self) -> bool

Compares the address of self with the address of other. Read more
Source§

fn piped<F, U>(self, f: F) -> U
where F: FnOnce(Self) -> U, Self: Sized,

Emulates the pipeline operator, allowing method syntax in more places. Read more
Source§

fn piped_ref<'a, F, U>(&'a self, f: F) -> U
where F: FnOnce(&'a Self) -> U,

The same as piped except that the function takes &Self Useful for functions that take &Self instead of Self. Read more
Source§

fn piped_mut<'a, F, U>(&'a mut self, f: F) -> U
where F: FnOnce(&'a mut Self) -> U,

The same as piped, except that the function takes &mut Self. Useful for functions that take &mut Self instead of Self.
Source§

fn mutated<F>(self, f: F) -> Self
where F: FnOnce(&mut Self), Self: Sized,

Mutates self using a closure taking self by mutable reference, passing it along the method chain. Read more
Source§

fn observe<F>(self, f: F) -> Self
where F: FnOnce(&Self), Self: Sized,

Observes the value of self, passing it along unmodified. Useful in long method chains. Read more
Source§

fn into_<T>(self) -> T
where Self: Into<T>,

Performs a conversion with Into. using the turbofish .into_::<_>() syntax. Read more
Source§

fn as_ref_<T>(&self) -> &T
where Self: AsRef<T>, T: ?Sized,

Performs a reference to reference conversion with AsRef, using the turbofish .as_ref_::<_>() syntax. Read more
Source§

fn as_mut_<T>(&mut self) -> &mut T
where Self: AsMut<T>, T: ?Sized,

Performs a mutable reference to mutable reference conversion with AsMut, using the turbofish .as_mut_::<_>() syntax. Read more
Source§

fn drop_(self)
where Self: Sized,

Drops self using method notation. Alternative to std::mem::drop. Read more
Source§

impl<T> ShapeArg for T
where T: IntoDimension,

Source§

impl<T> ShapeBuilder for T
where T: IntoDimension,

Source§

type Dim = <T as IntoDimension>::Dim

Source§

type Strides = T

Source§

fn into_shape_with_order(self) -> Shape<<T as ShapeBuilder>::Dim>

Source§

fn f(self) -> Shape<<T as ShapeBuilder>::Dim>

Source§

fn set_f(self, is_f: bool) -> Shape<<T as ShapeBuilder>::Dim>

Source§

fn strides(self, st: T) -> StrideShape<<T as ShapeBuilder>::Dim>

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

unsafe 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> ToOwned for T
where T: Clone,

Source§

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<This> TransmuteElement for This
where This: ?Sized,

Source§

unsafe fn transmute_element<T>(self) -> Self::TransmutedPtr
where Self: CanTransmuteElement<T>,

Transmutes the element type of this pointer.. Read more
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<T> TypeIdentity for T
where T: ?Sized,

Source§

type Type = T

This is always Self.
Source§

fn into_type(self) -> Self::Type
where Self: Sized, Self::Type: Sized,

Converts a value back to the original type.
Source§

fn as_type(&self) -> &Self::Type

Converts a reference back to the original type.
Source§

fn as_type_mut(&mut self) -> &mut Self::Type

Converts a mutable reference back to the original type.
Source§

fn into_type_box(self: Box<Self>) -> Box<Self::Type>

Converts a box back to the original type.
Source§

fn into_type_arc(this: Arc<Self>) -> Arc<Self::Type>

Converts an Arc back to the original type. Read more
Source§

fn into_type_rc(this: Rc<Self>) -> Rc<Self::Type>

Converts an Rc back to the original type. Read more
Source§

fn from_type(this: Self::Type) -> Self
where Self: Sized, Self::Type: Sized,

Converts a value back to the original type.
Source§

fn from_type_ref(this: &Self::Type) -> &Self

Converts a reference back to the original type.
Source§

fn from_type_mut(this: &mut Self::Type) -> &mut Self

Converts a mutable reference back to the original type.
Source§

fn from_type_box(this: Box<Self::Type>) -> Box<Self>

Converts a box back to the original type.
Source§

fn from_type_arc(this: Arc<Self::Type>) -> Arc<Self>

Converts an Arc back to the original type.
Source§

fn from_type_rc(this: Rc<Self::Type>) -> Rc<Self>

Converts an Rc back to the original type.
Source§

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

Source§

fn vzip(self) -> V

Source§

impl<T, Right> ClosedAdd<Right> for T
where T: Add<Right, Output = T> + AddAssign<Right>,

Source§

impl<T, Right> ClosedAdd<Right> for T
where T: Add<Right, Output = T> + AddAssign<Right>,

Source§

impl<T, Right> ClosedAddAssign<Right> for T
where T: ClosedAdd<Right> + AddAssign<Right>,

Source§

impl<T, Right> ClosedMul<Right> for T
where T: Mul<Right, Output = T> + MulAssign<Right>,

Source§

impl<T, Right> ClosedMul<Right> for T
where T: Mul<Right, Output = T> + MulAssign<Right>,

Source§

impl<T, Right> ClosedMulAssign<Right> for T
where T: ClosedMul<Right> + MulAssign<Right>,

Source§

impl<T, Right> ClosedSub<Right> for T
where T: Sub<Right, Output = T> + SubAssign<Right>,

Source§

impl<T, Right> ClosedSub<Right> for T
where T: Sub<Right, Output = T> + SubAssign<Right>,

Source§

impl<T, Right> ClosedSubAssign<Right> for T
where T: ClosedSub<Right> + SubAssign<Right>,

Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,

Source§

impl<T> Scalar for T
where T: 'static + Clone + PartialEq + Debug,

Source§

impl<T> SendAlias for T

Source§

impl<T> SyncAlias for T

Source§

impl<This> ValidTag_Bounds for This
where This: Debug + Clone + PartialEq,