3 references to Sort
System.Collections.Immutable (3)
System\Collections\Immutable\ImmutableList_1.Builder.cs (1)
909this.Root = this.Root.Sort(comparer);
System\Collections\Immutable\ImmutableList_1.cs (1)
461public ImmutableList<T> Sort(IComparer<T>? comparer) => this.Wrap(_root.Sort(comparer));
System\Collections\Immutable\ImmutableList_1.Node.cs (1)
582internal Node Sort() => this.Sort(Comparer<T>.Default);