CustomSetNode<'T> Type
An adaptive set whose content is driven by a compute function. 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
ReaderSetNode. FDA ASet.custom parity, pull model.
Constructors
| Constructor |
Description
|
Full Usage:
CustomSetNode(compute)
Parameters:
IReadOnlySet<'T> -> SetDeltaBuilder<'T> -> unit
Returns: CustomSetNode<'T>
|
|
Mibo