CustomListNode<'T> Type
An adaptive list whose content is driven by a compute function (FDA
AList.custom parity, MAPA-DESIGN §1.3). The compute receives the
current view and a delta builder; it appends the operations that describe
the change since the previous call (consuming its own event queue, for
example). Called on every read (poll), like CustomSetNode.
Constructors
| Constructor |
Description
|
Full Usage:
CustomListNode(compute)
Parameters:
IReadOnlyList<'T> -> ListDeltaBuilder<'T> -> unit
Returns: CustomListNode<'T>
|
|
Mibo