11 references to ImmutableQueue
Microsoft.AspNetCore.Components.Endpoints (1)
FormMapping\Converters\CollectionAdapters\ImmutableQueueBufferAdapter.cs (1)
16return ImmutableQueue.CreateRange(buffer.Take(size));
Microsoft.AspNetCore.Components.Endpoints.Tests (2)
Binding\FormDataMapperTests.cs (2)
841var expected = ImmutableQueue.CreateRange(new[] { 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 }); 873var expected = ImmutableQueue.CreateRange(new[] { 10, 11, 12, 13, 14, 15, 16, 17, 18, 19 });
Microsoft.AspNetCore.Http.Extensions (1)
src\Components\Endpoints\src\FormMapping\Converters\CollectionAdapters\ImmutableQueueBufferAdapter.cs (1)
16return ImmutableQueue.CreateRange(buffer.Take(size));
Microsoft.Extensions.AI.Abstractions.Tests (1)
test\Shared\JsonSchemaExporter\TestTypes.cs (1)
801yield return new TestData<ImmutableQueue<bool>>(ImmutableQueue.Create(false, false, true), """{"type":["array","null"],"items":{"type":"boolean"}}""");
Shared.Tests (1)
JsonSchemaExporter\TestTypes.cs (1)
801yield return new TestData<ImmutableQueue<bool>>(ImmutableQueue.Create(false, false, true), """{"type":["array","null"],"items":{"type":"boolean"}}""");
System.Collections.Immutable (4)
System\Collections\Immutable\IImmutableQueue.cs (2)
13[CollectionBuilder(typeof(ImmutableQueue), nameof(ImmutableQueue.Create))]
System\Collections\Immutable\ImmutableQueue_1.cs (2)
16[CollectionBuilder(typeof(ImmutableQueue), nameof(ImmutableQueue.Create))]
System.Text.Json.SourceGeneration (1)
Helpers\KnownTypeSymbols.cs (1)
297factoryTypeFullName = typeof(ImmutableQueue).FullName;