LinearVariable

class LinearVariable : PrintableVariable<Double>

This class represents a linear variable, namely a variable whose values span linearly between minimum and maximum.

Constructors

Link copied to clipboard
open fun LinearVariable(def: Double, min: Double, max: Double, step: Double)

Functions

Link copied to clipboard
open fun forEach(action: Consumer<out Any>)
Link copied to clipboard
open fun getDefault(): Double
Link copied to clipboard
open fun iterator(): Iterator<V>
abstract fun iterator(): Iterator<T>
Link copied to clipboard
open fun spliterator(): Spliterator<T>
Link copied to clipboard
open fun steps(): Long
Link copied to clipboard
open fun stream(): Stream<Double>
Link copied to clipboard
open fun toString(): String