Trait building_blocks::prelude::Chunk[][src]

pub trait Chunk {
    type Array;
    fn array(&self) -> &Self::Array;
fn array_mut(&mut self) -> &mut Self::Array; }
Expand description

One piece of a chunked lattice map.

Associated Types

The inner array type. This makes it easier for Chunk implementations to satisfy access trait bounds by inheriting them from existing array types like Array.

Required methods

Borrow the inner array.

Mutably borrow the inner array.

Implementations on Foreign Types

Implementors