[][src]Struct gridd::Grid

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

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

Methods

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

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

Create a new Grid populated with a default value.

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

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

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

Perform a transposition.

impl<T> Grid<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 some cell.

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

Get a mutable reference to some cell.

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

Get an immutable reference to the cell with the given positional relationship to the provided coordinate.

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

Get a mutable reference to the cell with the given positional relationship to the provided coordinate.

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

Set a cell's value.

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

Set the value of a cell with the given positional relationship to the provided coordinate.

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

Determine if a coordinate is within the grid

Trait Implementations

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

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

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

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

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

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

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

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

Auto Trait Implementations

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

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

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

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

impl<T> RefUnwindSafe for Grid<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]