11 references to EmptyNode
System.Collections.Immutable (11)
System\Collections\Immutable\ImmutableDictionary_2.HashBucket.cs (1)
44
_additionalElements = additionalElements ?? ImmutableList<KeyValuePair<TKey, TValue>>.Node.
EmptyNode
;
System\Collections\Immutable\ImmutableHashSet_1.HashBucket.cs (1)
59
_additionalElements = additionalElements ?? ImmutableList<T>.Node.
EmptyNode
;
System\Collections\Immutable\ImmutableList_1.Builder.cs (2)
36
private Node _root = Node.
EmptyNode
;
191
this.Root = ImmutableList<T>.Node.
EmptyNode
;
System\Collections\Immutable\ImmutableList_1.cs (1)
34
internal ImmutableList() => _root = Node.
EmptyNode
;
System\Collections\Immutable\ImmutableList_1.Node.cs (6)
251
return
EmptyNode
;
270
return
EmptyNode
;
411
result =
EmptyNode
;
937
ImmutableList<TOutput>.Node root = ImmutableList<TOutput>.Node.
EmptyNode
;
1570
private static Node CreateLeaf(T key) => new Node(key, left:
EmptyNode
, right:
EmptyNode
);