package dtoTypes
Ordering
- Alphabetic
Visibility
- Public
- All
Type Members
-
case class
Position(line: Int, column: Int) extends Product with Serializable
- line
Line position in a document (zero-based).
- column
Character offset on a line in a document (zero-based). Assuming that the line is represented as a string, the
charactervalue represents the gap between thecharacterandcharacter + 1.
- case class PositionRange(start: Position, end: Position) extends Product with Serializable
Value Members
- object AscendingPositionOrdering extends Ordering[Position]
- object DescendingPositionOrdering extends Ordering[Position]
- object EmptyPositionRange extends PositionRange
- object Position extends Serializable
- object Position0 extends Position
- object Position1 extends Position
- object PositionRange extends Serializable
- object TextUpdater