BindListNode<'T, 'U> Type
An adaptive list bound to a scalar value (FDA AList.bind parity):
mapping value selects the inner list; when the value or the inner
list changes, the output is rebuilt and the positional diff is emitted.
The mapping runs only when the value changed. Rebuild-on-change semantics:
the deltas are full replaces (the inner list's own deltas are not streamed).
Constructors
| Constructor |
Description
|
Full Usage:
BindListNode(value, mapping)
Parameters:
IAdaptiveValue<'T>
mapping : 'T -> IAdaptiveList<'U>
Returns: BindListNode<'T, 'U>
|
|
Mibo