BlockingRealChain

abstract class BlockingRealChain : Chain<Double>

Performance optimized chain for real values

Constructors

BlockingRealChain
Link copied to clipboard
common
fun BlockingRealChain()

Functions

collect
Link copied to clipboard
common
open suspend override fun collect(collector: FlowCollector<Double>)
equals
Link copied to clipboard
common
open operator fun equals(other: Any?): Boolean
fork
Link copied to clipboard
common
abstract fun fork(): Chain<Double>
Create a copy of current chain state.
hashCode
Link copied to clipboard
common
open fun hashCode(): Int
next
Link copied to clipboard
common
open suspend override fun next(): Double
Generate next value, changing state if needed
nextBlock
Link copied to clipboard
common
fun nextBlock(size: Int): DoubleArray
nextDouble
Link copied to clipboard
common
abstract fun nextDouble(): Double
toString
Link copied to clipboard
common
open fun toString(): String