CharacterPosition

data class CharacterPosition(val character: Char, val column: Int, val row: Int)

Defines the position of a Char in 2D space, with a specified column and row.

Constructors

Link copied to clipboard
constructor(character: Char, column: Int, row: Int)

Properties

Link copied to clipboard
Link copied to clipboard
val column: Int
Link copied to clipboard
val row: Int