1 instantiation of Builder
System.Collections.Immutable (1)
System\Collections\Immutable\ImmutableSortedDictionary_2.cs (1)
239
return new
Builder
(this);
30 references to Builder
Microsoft.AspNetCore.Components.Endpoints (6)
FormMapping\Converters\DictionaryAdapters\ImmutableSortedDictionaryBufferAdapter.cs (5)
9
: IDictionaryBufferAdapter<ImmutableSortedDictionary<TKey, TValue>, ImmutableSortedDictionary<TKey, TValue>.
Builder
, TKey, TValue>
12
public static ImmutableSortedDictionary<TKey, TValue>.
Builder
Add(ref ImmutableSortedDictionary<TKey, TValue>.
Builder
buffer, TKey key, TValue value)
18
public static ImmutableSortedDictionary<TKey, TValue>.
Builder
CreateBuffer() => ImmutableSortedDictionary.CreateBuilder<TKey, TValue>();
20
public static ImmutableSortedDictionary<TKey, TValue> ToResult(ImmutableSortedDictionary<TKey, TValue>.
Builder
buffer) => buffer.ToImmutable();
FormMapping\Factories\Dictionary\TypedDictionaryConverterFactory.cs (1)
125
ImmutableSortedDictionary<TKey, TValue>.
Builder
,
Microsoft.AspNetCore.Http.Extensions (6)
src\Components\Endpoints\src\FormMapping\Converters\DictionaryAdapters\ImmutableSortedDictionaryBufferAdapter.cs (5)
9
: IDictionaryBufferAdapter<ImmutableSortedDictionary<TKey, TValue>, ImmutableSortedDictionary<TKey, TValue>.
Builder
, TKey, TValue>
12
public static ImmutableSortedDictionary<TKey, TValue>.
Builder
Add(ref ImmutableSortedDictionary<TKey, TValue>.
Builder
buffer, TKey key, TValue value)
18
public static ImmutableSortedDictionary<TKey, TValue>.
Builder
CreateBuffer() => ImmutableSortedDictionary.CreateBuilder<TKey, TValue>();
20
public static ImmutableSortedDictionary<TKey, TValue> ToResult(ImmutableSortedDictionary<TKey, TValue>.
Builder
buffer) => buffer.ToImmutable();
src\Components\Endpoints\src\FormMapping\Factories\Dictionary\TypedDictionaryConverterFactory.cs (1)
125
ImmutableSortedDictionary<TKey, TValue>.
Builder
,
Microsoft.CodeAnalysis (2)
DiagnosticAnalyzer\AnalyzerFileReference.cs (2)
402
var
map = ImmutableSortedDictionary.CreateBuilder<string, ImmutableArray<TExtension>>(StringComparer.OrdinalIgnoreCase);
462
internal void AddExtensions(ImmutableSortedDictionary<string, ImmutableArray<TExtension>>.
Builder
builder)
Microsoft.CodeAnalysis.Workspaces (5)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\ISolutionExtensions.cs (1)
93
var
projectIdToSourceGenerationVersion = ImmutableSortedDictionary.CreateBuilder<ProjectId, SourceGeneratorExecutionVersion>();
Workspace\Solution\SourceGeneratorExecutionVersion.cs (1)
95
var
builder = ImmutableSortedDictionary.CreateBuilder<ProjectId, SourceGeneratorExecutionVersion>();
Workspace\Solution\TextDocumentStates.cs (2)
180
var
builder = States.ToBuilder();
200
var
builder = States.ToBuilder();
Workspace\Workspace_SourceGeneration.cs (1)
76
var
result = ImmutableSortedDictionary.CreateBuilder<ProjectId, SourceGeneratorExecutionVersion>();
System.Collections.Immutable (11)
System\Collections\Immutable\ImmutableSortedDictionary.cs (4)
96
public static ImmutableSortedDictionary<TKey, TValue>.
Builder
CreateBuilder<TKey, TValue>() where TKey : notnull
108
public static ImmutableSortedDictionary<TKey, TValue>.
Builder
CreateBuilder<TKey, TValue>(IComparer<TKey>? keyComparer) where TKey : notnull
121
public static ImmutableSortedDictionary<TKey, TValue>.
Builder
CreateBuilder<TKey, TValue>(IComparer<TKey>? keyComparer, IEqualityComparer<TValue>? valueComparer) where TKey : notnull
153
public static ImmutableSortedDictionary<TKey, TValue> ToImmutableSortedDictionary<TKey, TValue>(this ImmutableSortedDictionary<TKey, TValue>.
Builder
builder) where TKey : notnull
System\Collections\Immutable\ImmutableSortedDictionary_2.Builder.cs (2)
11
/// Contains the inner <see cref="ImmutableSortedDictionary{TKey, TValue}.
Builder
"/> class.
68
/// Initializes a new instance of the <see cref="
Builder
"/> class.
System\Collections\Immutable\ImmutableSortedDictionary_2.cs (2)
234
public
Builder
ToBuilder()
761
if (sequence is
Builder
builder)
System\Collections\Immutable\ImmutableSortedDictionary_2.Enumerator.cs (2)
31
private readonly
Builder
? _builder;
64
internal Enumerator(Node root,
Builder
? builder = null)
System\Collections\Immutable\ImmutableSortedDictionary_2.Node.cs (1)
191
internal Enumerator GetEnumerator(
Builder
builder)