[][src]Struct gridd::StaticGrid

pub struct StaticGrid<T> { /* fields omitted */ }

Two-dimensional, non-resizeable, zero-indexed grid.

Methods

impl<T> StaticGrid<T> where
    T: Copy
[src]

pub fn new(col_count: usize, row_count: usize, default: T) -> Self[src]

Create a new StaticGrid populated with a default value.

pub fn square(side_len: usize, default: T) -> Self[src]

Create a new StaticGrid in a square shape, populated with a default value.

pub fn transpose(&self) -> Self[src]

Return a transposition of the grid

impl<T> StaticGrid<T>[src]

pub fn col_count(&self) -> usize[src]

Get a grid's column count.

pub fn row_count(&self) -> usize[src]

Get a grid's row count.

pub fn get(&self, coord: Coord) -> Option<&T>[src]

Get an immutable reference to a cell's value.

pub fn get_mut(&mut self, coord: Coord) -> Option<&mut T>[src]

Get a mutable reference to a cell's value.

pub fn rget(&self, anchor: Coord, vec: Vector) -> Option<&T>[src]

Get an immutable reference to a cell's value offset from an anchor.

pub fn rget_mut(&mut self, anchor: Coord, vec: Vector) -> Option<&mut T>[src]

Get a mutable reference to a cell's value offset from an anchor.

pub fn set(&mut self, coord: Coord, new_val: T)[src]

Set a cell's value.

pub fn contains(&self, (col, row): Coord) -> bool[src]

Determine if a coordinate is within the grid

Trait Implementations

impl<T: Eq> Eq for StaticGrid<T>[src]

impl<T: Default> Default for StaticGrid<T>[src]

impl<T: Clone> Clone for StaticGrid<T>[src]

impl<T: PartialOrd> PartialOrd<StaticGrid<T>> for StaticGrid<T>[src]

impl<T: Ord> Ord for StaticGrid<T>[src]

impl<T: PartialEq> PartialEq<StaticGrid<T>> for StaticGrid<T>[src]

impl<T: Hash> Hash for StaticGrid<T>[src]

impl<T: Debug> Debug for StaticGrid<T>[src]

Auto Trait Implementations

impl<T> Unpin for StaticGrid<T> where
    T: Unpin

impl<T> Sync for StaticGrid<T> where
    T: Sync

impl<T> Send for StaticGrid<T> where
    T: Send

impl<T> UnwindSafe for StaticGrid<T> where
    T: UnwindSafe

impl<T> RefUnwindSafe for StaticGrid<T> where
    T: RefUnwindSafe

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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.

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

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

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