14 references to ImmutableStack
Microsoft.AspNetCore.Components.Endpoints (1)
FormMapping\Converters\CollectionAdapters\ImmutableStackBufferAdapter.cs (1)
16return ImmutableStack.CreateRange(buffer.Take(size));
Microsoft.AspNetCore.Components.Endpoints.Tests (2)
Binding\FormDataMapperTests.cs (2)
849var expected = ImmutableStack.CreateRange(new[] { 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 }); 881var 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)
16return 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)
55ImmutableStack<T> forwards = ImmutableStack.Create(e.Current);
System\Collections\Immutable\ImmutableQueue_1.cs (1)
160return 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)
290factoryTypeFullName = typeof(ImmutableStack).FullName;