10 references to ImmutableSortedSet
Microsoft.AspNetCore.Components.Endpoints (1)
FormMapping\Converters\CollectionAdapters\ImmutableSortedSetBufferAdapter.cs (1)
10
public static ImmutableSortedSet<TElement>.Builder CreateBuffer() =>
ImmutableSortedSet
.CreateBuilder<TElement>();
Microsoft.AspNetCore.Components.Endpoints.Tests (1)
Binding\FormDataMapperTests.cs (1)
833
var expected =
ImmutableSortedSet
.CreateRange(new[] { 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 });
Microsoft.AspNetCore.Http.Extensions (1)
src\Components\Endpoints\src\FormMapping\Converters\CollectionAdapters\ImmutableSortedSetBufferAdapter.cs (1)
10
public static ImmutableSortedSet<TElement>.Builder CreateBuffer() =>
ImmutableSortedSet
.CreateBuilder<TElement>();
Microsoft.CodeAnalysis.UnitTests (2)
Collections\ImmutableSegmentedHashSetBuilderTest.cs (1)
326
var set = System.Collections.Immutable.
ImmutableSortedSet
.ToImmutableSortedSet(builder);
Collections\ImmutableSegmentedHashSetTest.cs (1)
64
var sorted = System.Collections.Immutable.
ImmutableSortedSet
.ToImmutableSortedSet(set);
Microsoft.CodeAnalysis.Workspaces (1)
Rename\ConflictEngine\ConflictResolver.Session.cs (1)
892
var builder =
ImmutableSortedSet
.CreateBuilder<TextSpan>();
System.Collections.Immutable (3)
System\Collections\Immutable\ImmutableSortedSet_1.cs (3)
20
[CollectionBuilder(typeof(
ImmutableSortedSet
), nameof(
ImmutableSortedSet
.Create))]
265
ImmutableSortedSet<T> otherAsSet =
ImmutableSortedSet
.CreateRange(_comparer, other);
System.Text.Json.SourceGeneration (1)
Helpers\KnownTypeSymbols.cs (1)
310
factoryTypeFullName = typeof(
ImmutableSortedSet
).FullName;