HalfClosedDoubleRange

data class HalfClosedDoubleRange(lowerBound: Double, upperBound: Double)

A Range of Double where the lowerBound is included, and the upperBound is excluded: (lowerBound, upperBound].

Parameters

lowerBound

the lower bound of the interval, included in the interval.

upperBound

the upper bound of the interval, not included in the interval.

Constructors

HalfClosedDoubleRange
Link copied to clipboard
fun HalfClosedDoubleRange(lowerBound: Double, upperBound: Double)
the lower bound of the interval, included in the interval.

Properties

lowerBound
Link copied to clipboard
val lowerBound: Double
the lower bound of the interval, included in the interval.
upperBound
Link copied to clipboard
val upperBound: Double
the upper bound of the interval, not included in the interval.