Struct array3d::Array2d [] [src]

pub struct Array2d<T> {
    pub shape: V2i,
    pub data: Vec<T>,
}

Fields

Methods

impl<T: Clone> Array2d<T>
[src]

[src]

[src]

[src]

[src]

[src]

Trait Implementations

impl<T: Clone> Index<V2i> for Array2d<T>
[src]

The returned type after indexing.

[src]

Performs the indexing (container[index]) operation.

impl<T: Clone> IndexMut<V2i> for Array2d<T>
[src]

[src]

Performs the mutable indexing (container[index]) operation.