14 references to ImmutableStack
Microsoft.AspNetCore.Components.Endpoints (1)
FormMapping\Converters\CollectionAdapters\ImmutableStackBufferAdapter.cs (1)
16
return
ImmutableStack
.CreateRange(buffer.Take(size));
Microsoft.AspNetCore.Components.Endpoints.Tests (2)
Binding\FormDataMapperTests.cs (2)
849
var expected =
ImmutableStack
.CreateRange(new[] { 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 });
881
var expected =
ImmutableStack
.CreateRange(new[] { 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 });
Microsoft.AspNetCore.Http.Extensions (1)
src\Components\Endpoints\src\FormMapping\Converters\CollectionAdapters\ImmutableStackBufferAdapter.cs (1)
16
return
ImmutableStack
.CreateRange(buffer.Take(size));
Microsoft.CodeAnalysis.CSharp (1)
Parser\Blender.cs (1)
39
_changes =
ImmutableStack
.Create<TextChangeRange>();
Microsoft.CodeAnalysis.VisualBasic (2)
Scanner\Directives.vb (2)
277
_conditionals =
ImmutableStack
.Create(Of ConditionalState)()
278
_regionDirectives =
ImmutableStack
.Create(Of RegionDirectiveTriviaSyntax)()
System.Collections.Immutable (6)
System\Collections\Immutable\IImmutableStack.cs (2)
13
[CollectionBuilder(typeof(
ImmutableStack
), nameof(
ImmutableStack
.Create))]
System\Collections\Immutable\ImmutableQueue.cs (1)
55
ImmutableStack<T> forwards =
ImmutableStack
.Create(e.Current);
System\Collections\Immutable\ImmutableQueue_1.cs (1)
160
return new ImmutableQueue<T>(
ImmutableStack
.Create(value), ImmutableStack<T>.Empty);
System\Collections\Immutable\ImmutableStack_1.cs (2)
16
[CollectionBuilder(typeof(
ImmutableStack
), nameof(
ImmutableStack
.Create))]
System.Text.Json.SourceGeneration (1)
Helpers\KnownTypeSymbols.cs (1)
290
factoryTypeFullName = typeof(
ImmutableStack
).FullName;