SetDeltaBuilder<'T> Type
A mutable delta builder for ASet.custom computes. The compute receives the current view and this builder, appends the operations that describe the change since the previous call, and returns. The builder is a class: appends mutate the node's pending delta directly (a struct delta passed by value would be copied and lost).
Constructors
| Constructor |
Description
|
|
|
Instance members
| Instance member |
Description
|
Full Usage:
this.Add
Parameters:
'T
|
Appends an add operation.
|
Full Usage:
this.Remove
Parameters:
'T
|
Appends a remove operation.
|
Mibo