NumberOrRange

Represents an integer, or a start- and stop-inclusive integer range.

Parameters

start

The inclusive lower bound of the range or null, if this is a number

end

The inclusive upper bound of the range or null, if not specified or this is a number

value

The integer value or null, if this is a range

Types

Link copied to clipboard
object Companion

Functions

Link copied to clipboard

Converts the current object to a filter.

Properties

Link copied to clipboard
val end: Int?
Link copied to clipboard

Whether this object represents an integer.

Link copied to clipboard

Whether this object represents a range.

Link copied to clipboard
val start: Int?
Link copied to clipboard
val value: Int?