10 references to EmptyNode
System.Collections.Immutable (10)
System\Collections\Immutable\ImmutableSortedSet_1.Builder.cs (4)
36private ImmutableSortedSet<T>.Node _root = ImmutableSortedSet<T>.Node.EmptyNode; 155ImmutableSortedSet<T>.Node newRoot = Node.EmptyNode; 241ImmutableSortedSet<T>.Node result = ImmutableSortedSet<T>.Node.EmptyNode; 352this.Root = ImmutableSortedSet<T>.Node.EmptyNode;
System\Collections\Immutable\ImmutableSortedSet_1.cs (2)
57_root = Node.EmptyNode; 357var result = new ImmutableSortedSet<T>(Node.EmptyNode, comparer);
System\Collections\Immutable\ImmutableSortedSet_1.Node.cs (4)
409result = EmptyNode; 488/// <returns>The matching node, or <see cref="EmptyNode"/> if no match was found.</returns> 520/// <returns>The matching node, or <see cref="EmptyNode"/> if no match was found.</returns> 729return EmptyNode;