get

open operator override fun get(address: Grid.Address): Grid.State

The Address-indexed get operator for Grid.

This is a direct accessor, and it will result in Exceptions for invalid addresses. See isValidAddress.


open operator override fun get(row: Int, column: Int): Grid.State

The Int-indexed get operator for Grid.

This is a direct accessor, and it will result in Exceptions for invalid addresses. See isValidAddress.