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; 191this.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)
251return EmptyNode; 270return EmptyNode; 411result = EmptyNode; 937ImmutableList<TOutput>.Node root = ImmutableList<TOutput>.Node.EmptyNode; 1570private static Node CreateLeaf(T key) => new Node(key, left: EmptyNode, right: EmptyNode);