conspire::math

Trait TensorVec

Source
pub trait TensorVec
where Self: FromIterator<Self::Item> + Index<usize, Output = Self::Item> + IndexMut<usize>,
{ type Item; type Slice<'a>; // Required methods fn append(&mut self, other: &mut Self); fn is_empty(&self) -> bool; fn len(&self) -> usize; fn new(slice: Self::Slice<'_>) -> Self; fn push(&mut self, item: Self::Item); fn zero(len: usize) -> Self; }
Expand description

Common methods for tensors derived from Vec.

Required Associated Types§

Source

type Item

The type of item encountered when iterating over the tensor.

Source

type Slice<'a>

The type of slice corresponding to the tensor.

Required Methods§

Source

fn append(&mut self, other: &mut Self)

Moves all the items of other into self, leaving other empty.

Source

fn is_empty(&self) -> bool

Returns true if the vector contains no items.

Source

fn len(&self) -> usize

Returns the number of items in the vector, also referred to as its ‘length’.

Source

fn new(slice: Self::Slice<'_>) -> Self

Returns a tensor given a slice.

Source

fn push(&mut self, item: Self::Item)

Appends an item to the back of the Vec.

Source

fn zero(len: usize) -> Self

Returns the zero tensor.

Dyn Compatibility§

This trait is not dyn compatible.

In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.

Implementors§

Source§

impl TensorVec for SquareMatrix

Source§

type Item = Vector

Source§

type Slice<'a> = &'a [&'a [f64]]

Source§

impl TensorVec for Vector

Source§

type Item = f64

Source§

type Slice<'a> = &'a [f64]

Source§

impl<const D: usize, const I: usize> TensorVec for TensorRank1Vec<D, I>

Source§

type Item = TensorRank1<D, I>

Source§

type Slice<'a> = &'a [[f64; D]]

Source§

impl<const D: usize, const I: usize, const J: usize> TensorVec for TensorRank2Vec2D<D, I, J>

Source§

type Item = TensorRank2Vec<D, I, J>

Source§

type Slice<'a> = &'a [&'a [[[f64; D]; D]]]

Source§

impl<const D: usize, const I: usize, const J: usize> TensorVec for TensorRank2Vec<D, I, J>

Source§

type Item = TensorRank2<D, I, J>

Source§

type Slice<'a> = &'a [[[f64; D]; D]]