pub trait BoardSpaceManager<CI, I1, I2>: Send + Sync{
// Required methods
fn indices_iter(&self) -> I1;
fn indices_par_iter(&self) -> I2;
}
Expand description
Manages the logical space between cells.
pub trait BoardSpaceManager<CI, I1, I2>: Send + Sync{
// Required methods
fn indices_iter(&self) -> I1;
fn indices_par_iter(&self) -> I2;
}
Manages the logical space between cells.