Variable

interface Variable<V : Serializable?> : Serializable, Iterable<V>

A variable simulation value, that provides a range of values for batches, and a default value for single-shot runs.

Parameters

<V>

value typ of the variable

Functions

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

Inheritors

Link copied to clipboard