1 instantiation of Builder
System.Collections.Immutable (1)
System\Collections\Immutable\ImmutableSortedDictionary_2.cs (1)
239return 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> 12public static ImmutableSortedDictionary<TKey, TValue>.Builder Add(ref ImmutableSortedDictionary<TKey, TValue>.Builder buffer, TKey key, TValue value) 18public static ImmutableSortedDictionary<TKey, TValue>.Builder CreateBuffer() => ImmutableSortedDictionary.CreateBuilder<TKey, TValue>(); 20public static ImmutableSortedDictionary<TKey, TValue> ToResult(ImmutableSortedDictionary<TKey, TValue>.Builder buffer) => buffer.ToImmutable();
FormMapping\Factories\Dictionary\TypedDictionaryConverterFactory.cs (1)
125ImmutableSortedDictionary<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> 12public static ImmutableSortedDictionary<TKey, TValue>.Builder Add(ref ImmutableSortedDictionary<TKey, TValue>.Builder buffer, TKey key, TValue value) 18public static ImmutableSortedDictionary<TKey, TValue>.Builder CreateBuffer() => ImmutableSortedDictionary.CreateBuilder<TKey, TValue>(); 20public static ImmutableSortedDictionary<TKey, TValue> ToResult(ImmutableSortedDictionary<TKey, TValue>.Builder buffer) => buffer.ToImmutable();
src\Components\Endpoints\src\FormMapping\Factories\Dictionary\TypedDictionaryConverterFactory.cs (1)
125ImmutableSortedDictionary<TKey, TValue>.Builder,
Microsoft.CodeAnalysis (2)
DiagnosticAnalyzer\AnalyzerFileReference.cs (2)
402var map = ImmutableSortedDictionary.CreateBuilder<string, ImmutableArray<TExtension>>(StringComparer.OrdinalIgnoreCase); 462internal void AddExtensions(ImmutableSortedDictionary<string, ImmutableArray<TExtension>>.Builder builder)
Microsoft.CodeAnalysis.Workspaces (5)
src\Workspaces\SharedUtilitiesAndExtensions\Workspace\Core\Extensions\ISolutionExtensions.cs (1)
93var projectIdToSourceGenerationVersion = ImmutableSortedDictionary.CreateBuilder<ProjectId, SourceGeneratorExecutionVersion>();
Workspace\Solution\SourceGeneratorExecutionVersion.cs (1)
95var builder = ImmutableSortedDictionary.CreateBuilder<ProjectId, SourceGeneratorExecutionVersion>();
Workspace\Solution\TextDocumentStates.cs (2)
180var builder = States.ToBuilder(); 200var builder = States.ToBuilder();
Workspace\Workspace_SourceGeneration.cs (1)
76var result = ImmutableSortedDictionary.CreateBuilder<ProjectId, SourceGeneratorExecutionVersion>();
System.Collections.Immutable (11)
System\Collections\Immutable\ImmutableSortedDictionary.cs (4)
96public static ImmutableSortedDictionary<TKey, TValue>.Builder CreateBuilder<TKey, TValue>() where TKey : notnull 108public static ImmutableSortedDictionary<TKey, TValue>.Builder CreateBuilder<TKey, TValue>(IComparer<TKey>? keyComparer) where TKey : notnull 121public static ImmutableSortedDictionary<TKey, TValue>.Builder CreateBuilder<TKey, TValue>(IComparer<TKey>? keyComparer, IEqualityComparer<TValue>? valueComparer) where TKey : notnull 153public 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)
234public Builder ToBuilder() 761if (sequence is Builder builder)
System\Collections\Immutable\ImmutableSortedDictionary_2.Enumerator.cs (2)
31private readonly Builder? _builder; 64internal Enumerator(Node root, Builder? builder = null)
System\Collections\Immutable\ImmutableSortedDictionary_2.Node.cs (1)
191internal Enumerator GetEnumerator(Builder builder)