MutableRange

class MutableRange(var start: Int, var end: Int)

A text range with mutable bounds

Parameters

start

points to the first character

end

points to the next character after the last one

Constructors

Link copied to clipboard
constructor(start: Int, end: Int)

Properties

Link copied to clipboard
var end: Int
Link copied to clipboard
var start: Int

Functions

Link copied to clipboard
open override fun toString(): String