[][src]Struct gridly_grids::SparseGrid

pub struct SparseGrid<T: Clone + PartialEq> { /* fields omitted */ }

A sparse grid, where most of the cells are some default grid.

Sparse grids are backed by a hash table and a default value, and all elements not present in the hash table are considered to be the default value. These are colloquially called "unoccupied cells", though from the point of view of the gridly interface, they are indistinguishable from other cells. When reading from the grid, references to unoccupied cells will (usually) be to the same stored default value.

Whenever possible, cells that are set to the default value (as determined by PartialEq) will be removed from the hash table. Conversely, getting a mutable reference to an unnocupied cell will insert a clone of the default at that location, which can then be mutated.

Note about interior mutability: When a user gets a reference to an unoccupied cell, the reference will (usually) be to the stored default value. This means that if the user mutates the cell somehow (for instance, with a RefCell), those changes will appear in all unoccupied cells.

This is a trivial implementation of a Sparse Grid, intended for simple use cases and as an example Grid implementation. More complex implementations are possible that track dirtied cells and clear them from the internal storage more aggressively.

Implementations

impl<T: Clone + PartialEq> SparseGrid<T>[src]

pub fn new_default(dimensions: impl VectorLike, default: T) -> Self[src]

Create a new SparseGrid with the given dimensions, rooted at (0, 0), filled with the given default value

pub fn new_rooted_default(
    root: impl LocationLike,
    dimensions: impl VectorLike,
    default: T
) -> Self
[src]

Create a new SparseGrid with the given dimensions and root location, filled with the default value

pub fn get_default(&self) -> &T[src]

Get a reference to the default value.

pub fn clean(&mut self)[src]

Remove all entries from the underlying hash table that compare equal to the default

pub fn clear(&mut self)[src]

Remove all non-default entries from the grid

pub fn occuppied_entries(
    &self
) -> impl Iterator<Item = (&Location, &T)> + FusedIterator + Clone
[src]

Get an iterator over all of the occupied (non-default) entries in the grid, in an arbitrary order.

pub fn occuppied_entries_mut(
    &mut self
) -> impl Iterator<Item = (&Location, &mut T)> + FusedIterator
[src]

Get an iterator of mutable references to the occupied (non-default) entries in the grid, in an arbitrary order.

pub fn occuppied_entries_mut_cleaned(
    &mut self
) -> impl Iterator<Item = (&Location, &mut T)> + FusedIterator + ExactSizeIterator
[src]

Get an iterator of mutable references to the occupied (non-default) entries in the grid, in an arbitrary order.

The difference between this method and occuppied_entries_mut is that this one first cleans the underlying storage. This means there's a higher up-front cost, but has the benefit of providing an ExactSizeIterator.

pub fn insert(&mut self, location: impl LocationLike, value: T) -> T[src]

Insert a value into this grid at an arbitrary location. If the location is outside the grid's bounds, the grid's bounds are updated to include this value. Returns the previous value.

Example

use gridly_grids::SparseGrid;
use gridly::prelude::*;

let mut grid: SparseGrid<isize> = SparseGrid::new((0, 0));

assert_eq!(grid.root(), (0, 0));
assert_eq!(grid.dimensions(), (0, 0));

grid.insert((-1, 0), 10);

assert_eq!(grid.root(), (-1, 0));
assert_eq!(grid.dimensions(), (1, 1));
assert_eq!(grid[(-1, 0)], 10);

grid.insert((0, 1), 5);

assert_eq!(grid.root(), (-1, 0));
assert_eq!(grid.dimensions(), (2, 2));
assert_eq!(grid[(0, 1)], 5);

grid.insert((1, 0), 4);

assert_eq!(grid.root(), (-1, 0));
assert_eq!(grid.dimensions(), (3, 2));
assert_eq!(grid[(1, 0)], 4);

grid.insert((0, -1), 3);

assert_eq!(grid.root(), (-1, -1));
assert_eq!(grid.dimensions(), (3, 3));
assert_eq!(grid[(0, -1)], 3);

impl<T: Clone + PartialEq + Default> SparseGrid<T>[src]

pub fn new_rooted(root: impl LocationLike, dimensions: impl VectorLike) -> Self[src]

Create a new SparseGrid with the given dimensions and root location, filled with the default value for T

pub fn new(dimensions: impl VectorLike) -> Self[src]

Create a new SparseGrid with the given dimensions, rooted at (0, 0), filled with the default value for T

Trait Implementations

impl<T: Clone + PartialEq> Clone for SparseGrid<T>[src]

impl<T: Debug + Clone + PartialEq> Debug for SparseGrid<T>[src]

impl<T: Clone + PartialEq> Grid for SparseGrid<T>[src]

type Item = T

The item type stored in the grid

unsafe fn get_unchecked(&self, loc: Location) -> &T[src]

Get a reference to a value in the grid. If the location is not present in the hash table, return a reference to the grid's default value.

impl<T: Clone + PartialEq> GridBounds for SparseGrid<T>[src]

impl<T: Clone + PartialEq> GridMut for SparseGrid<T>[src]

unsafe fn get_unchecked_mut(&mut self, location: Location) -> &mut T[src]

Get a mutable reference to a cell in the grid. If this cell is unoccupied, the default is cloned and inserted into the underlying hash table at this location.

impl<T: Clone + PartialEq> GridSetter for SparseGrid<T>[src]

unsafe fn replace_unchecked(
    &mut self,
    location: Location,
    value: Self::Item
) -> Self::Item
[src]

Set the value of a cell in the grid. If this value compares equal to the default, remove it from the underlying hash table. Return the previous value (which may be a clone of the default value if the cell was unoccupied)

unsafe fn set_unchecked(&mut self, location: Location, value: T)[src]

Set the value of a cell in the grid. If this value compares equal to the default, remove it from the underlying hash table.

impl<T: Clone + PartialEq, L: LocationLike> Index<L> for SparseGrid<T>[src]

type Output = T

The returned type after indexing.

impl<T: Clone + PartialEq, L: LocationLike> IndexMut<L> for SparseGrid<T>[src]

Auto Trait Implementations

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

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

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

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

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

Blanket Implementations

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

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

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

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

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

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

type Owned = T

The resulting type after obtaining ownership.

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.