12 references to ToImmutable
Microsoft.AspNetCore.Components.Endpoints (1)
FormMapping\Converters\CollectionAdapters\ImmutableSortedSetBufferAdapter.cs (1)
18public static ImmutableSortedSet<TElement> ToResult(ImmutableSortedSet<TElement>.Builder buffer) => buffer.ToImmutable();
Microsoft.AspNetCore.Http.Extensions (1)
src\Components\Endpoints\src\FormMapping\Converters\CollectionAdapters\ImmutableSortedSetBufferAdapter.cs (1)
18public static ImmutableSortedSet<TElement> ToResult(ImmutableSortedSet<TElement>.Builder buffer) => buffer.ToImmutable();
Microsoft.CodeAnalysis.Workspaces (1)
Rename\ConflictEngine\ConflictResolver.Session.cs (1)
907return builder.ToImmutable();
System.Collections.Immutable (9)
System\Collections\Immutable\ImmutableSortedSet.cs (1)
191return builder.ToImmutable();
System\Collections\Immutable\ImmutableSortedSet_1.Builder.cs (7)
261return this.ToImmutable().IsProperSubsetOf(other); 271return this.ToImmutable().IsProperSupersetOf(other); 281return this.ToImmutable().IsSubsetOf(other); 291return this.ToImmutable().IsSupersetOf(other); 301return this.ToImmutable().Overlaps(other); 311return this.ToImmutable().SetEquals(other); 320this.Root = this.ToImmutable().SymmetricExcept(other)._root;
System\Collections\Immutable\ImmutableSortedSet_1.cs (1)
1012other = builder.ToImmutable();