DelayRecord
final class DelayRecord<Value>(v:Random<Value>) < ValueRecord<Value>
Record of a delayed value.
- v: The random variate that will contain the delayed value.
Factory Functions
Name | Description |
---|---|
DelayRecord | Create a DelayRecord. |
Member Variables
Name | Description |
---|---|
v:Random<Value> | Random variate that will contain the delayed value. |
Factory Function Details
function DelayRecord<Value>(v:Random<Value>) -> DelayRecord<Value>
Create a DelayRecord.