interface GridInterface<A> {
get : (location: GridLocation) => A;
- map : (f : (location: GridLocation) => A) => Grid<A>;
+ map : (f : (location: GridLocation) => A) => void;
moore_neighbors: (origin : GridLocation) => Array<GridLocation>;
print : (toString : (A: A) => string) => void;
};
cells[r][k] = f(location);
}
};
- const init = ({r, k}) => cells[r][k];
- const grid = new Grid({rows: this.rows, columns: this.columns, init: init});
- return grid
+ this.cells = cells;
};
private print_border(): void {
};
next() : void {
- const grid = this.grid.map(
+ this.grid.map(
(location) => {
const neighbor_locations = this.grid.moore_neighbors(location);
const neighbor_states = neighbor_locations.map((l) => this.grid.get(l));
return state_1
}
);
- this.grid = grid
};
print() : void {