marta

Class IntRange

Half-open integer range. Includes from, all integers between from and to, does not include to.

For an empty range, from == to.

class marta.IntRange {

let from: Int

let to: Int

}