kumulant

IndexedResult

data class IndexedResult(val inner: Result, val index: Int) : Result(source)

Wraps an inner result with the coordinate index currently being evaluated. Element-wise feedback wrappers (vector / regression / paired) pass this to the projection AST so it can branch on VIndex and still address primary-snapshot fields (Center, Scale, Low, High) via the transparent unwrap performed by those AST nodes.

Constructors

Link copied to clipboard
constructor(inner: Result, index: Int)

Properties

Link copied to clipboard
val index: Int

Index of the coordinate this snapshot belongs to (0-based).

Link copied to clipboard

The per-coordinate primary snapshot.

index

Index of the coordinate this snapshot belongs to (0-based).

IndexedResult

constructor(inner: Result, index: Int)(source)

inner

The per-coordinate primary snapshot.