IntervalDouble

data class IntervalDouble(val min: Double, val max: Double)

Representation of closed interval with value type Double.

Constructors

Link copied to clipboard
constructor(min: Double, max: Double)

Properties

Link copied to clipboard
val max: Double

Maximal interval value. The value must be greater than min.

Link copied to clipboard
val min: Double

Minimal interval value. The value must be less than max.