-
Obtains an immutable grid by copying a set of cells.
Obtains an immutable grid with one cell.
Obtains an immutable grid by copying another grid.
Obtains an immutable grid by copying a set of cells, deriving the row and column count.
Obtains an empty immutable grid with zero row-column count.
ImmutableGrid.of(int rowCount,
int columnCount)
Obtains an empty immutable grid of the specified row-column count.
ImmutableGrid.of(int rowCount,
int columnCount,
int row,
int column,
R value)
Obtains an immutable grid of the specified row-column count with a single cell.
ImmutableGrid.of(R value)
Obtains an immutable grid with row-column count 1x1 and a single cell.