ListLookupNode<'T> Type
A positional lookup over an adaptive list (the node behind
AList.tryAt/AList.tryGet/AList.tryFirst). Registers
nothing; the position is re-read at the next read after a write, and the
version advances only when the element at the watched position actually
changed (a shift that lands the same value bumps nothing). The value is
re-read from the source view (O(1)).
Constructors
| Constructor |
Description
|
Full Usage:
ListLookupNode(source, index)
Parameters:
IAdaptiveList<'T>
index : int
Returns: ListLookupNode<'T>
|
|
Mibo