IntervalDouble

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

Representation of closed interval with value type Double.

Constructors

Link copied to clipboard
fun IntervalDouble(min: Double, max: Double)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard
val max: Double

Maximal interval value. The value must be greater than or equal to min.

Link copied to clipboard
val min: Double

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