RangeCursor

interface RangeCursor<T>

A range cursor is an object that moves to the next range every time you call next on it.

Properties

Link copied to clipboard
abstract var from: Int
Link copied to clipboard
abstract var rank: Int
Link copied to clipboard
abstract var to: Int
Link copied to clipboard
abstract var value: T?

Functions

Link copied to clipboard
abstract fun goto(pos: Int, side: Int = -FAR): RangeCursor<T>
Link copied to clipboard
abstract fun next()