1 implementation of IImmutableQueue
System.Collections.Immutable (1)
System\Collections\Immutable\ImmutableQueue_1.cs (1)
19public sealed partial class ImmutableQueue<T> : IImmutableQueue<T>
24 references to IImmutableQueue
Microsoft.AspNetCore.Components.Endpoints (5)
FormMapping\Converters\CollectionAdapters\ImmutableQueueBufferAdapter.cs (3)
20public static CollectionConverter<IImmutableQueue<TElement>> CreateInterfaceConverter(FormDataConverter<TElement> elementConverter) 23IImmutableQueue<TElement>, 25IImmutableQueue<TElement>,
FormMapping\Factories\Collections\TypedCollectionConverterFactory.cs (2)
79var _ when type == (typeof(IImmutableQueue<TElement>)) => true, 181var _ when type.IsAssignableTo(typeof(IImmutableQueue<TElement>)) =>
Microsoft.AspNetCore.Components.Endpoints.Tests (1)
Binding\FormDataMapperTests.cs (1)
874CanDeserialize_Collection<IImmutableQueue<int>, ImmutableQueue<int>, int>(expected);
Microsoft.AspNetCore.Http.Extensions (5)
src\Components\Endpoints\src\FormMapping\Converters\CollectionAdapters\ImmutableQueueBufferAdapter.cs (3)
20public static CollectionConverter<IImmutableQueue<TElement>> CreateInterfaceConverter(FormDataConverter<TElement> elementConverter) 23IImmutableQueue<TElement>, 25IImmutableQueue<TElement>,
src\Components\Endpoints\src\FormMapping\Factories\Collections\TypedCollectionConverterFactory.cs (2)
79var _ when type == (typeof(IImmutableQueue<TElement>)) => true, 181var _ when type.IsAssignableTo(typeof(IImmutableQueue<TElement>)) =>
Microsoft.CodeAnalysis.CSharp.Workspaces (1)
FindSymbols\CSharpDeclaredSymbolInfoFactoryService.cs (1)
175var node = queue.Dequeue();
System.Collections.Immutable (11)
System\Collections\Immutable\IImmutableQueue.cs (3)
27IImmutableQueue<T> Clear(); 45IImmutableQueue<T> Enqueue(T value); 52IImmutableQueue<T> Dequeue();
System\Collections\Immutable\ImmutableQueue.cs (2)
111public static IImmutableQueue<T> Dequeue<T>(this IImmutableQueue<T> queue, out T value)
System\Collections\Immutable\ImmutableQueue_1.cs (6)
98IImmutableQueue<T> IImmutableQueue<T>.Clear() 175IImmutableQueue<T> IImmutableQueue<T>.Enqueue(T value) 224IImmutableQueue<T> IImmutableQueue<T>.Dequeue()
System.Text.Json.SourceGeneration (1)
Helpers\KnownTypeSymbols.cs (1)
100public INamedTypeSymbol? IImmutableQueueType => GetOrResolveType(typeof(IImmutableQueue<>), ref _IImmutableQueueType);