get

abstract operator 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.


abstract operator 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.