SetContainsNode<'T> Type
A per-element membership test over an adaptive set (the node behind
ASet.contains). Registers nothing; the membership is re-read at
the next read after a write, and the version advances only when the
watched element's membership actually changed. Writes to unrelated
elements cost nobody anything.
The re-sync re-reads the source view; it matches
SetReduceNode.Drain's application order trivially (removals
first, then additions).
Constructors
| Constructor |
Description
|
Full Usage:
SetContainsNode(source, element)
Parameters:
IAdaptiveSet<'T>
element : 'T
Returns: SetContainsNode<'T>
|
|
Mibo