Point

data class Point(val row: UInt, val column: UInt) : Comparable<Point> (source)

A position in a text document in terms of rows and columns.

Constructors

Link copied to clipboard
constructor(row: UInt, column: UInt)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
@get:JvmName(name = "column")
val column: UInt

The zero-based column of the document.

Link copied to clipboard
@get:JvmName(name = "row")
val row: UInt

The zero-based row of the document.

Functions

Link copied to clipboard
open operator override fun compareTo(other: Point): Int