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)
36private Node _root = Node.EmptyNode; 202this.Root = ImmutableList<T>.Node.EmptyNode;
System\Collections\Immutable\ImmutableList_1.cs (1)
34internal ImmutableList() => _root = Node.EmptyNode;
System\Collections\Immutable\ImmutableList_1.Node.cs (6)
271return EmptyNode; 290return EmptyNode; 431result = EmptyNode; 957ImmutableList<TOutput>.Node root = ImmutableList<TOutput>.Node.EmptyNode; 1590private static Node CreateLeaf(T key) => new Node(key, left: EmptyNode, right: EmptyNode);