Global

Global

Type Definitions

state Array.<Array.<string>>

An array of arrays used to represent a unique generation of a life-like cellular automata.

Example
[
  [ "0", "1", "0", "0", "0", "0" ],
  [ "0", "1", "1", "0", "0", "0" ],
  [ "0", "0", "0", "0", "0", "0" ]
]