13 references to Empty
Microsoft.DotNet.Helix.Sdk (1)
LoggerExtensions.cs (1)
21get => s_localCategoryStack.Value ?? ImmutableStack<string>.Empty;
System.Collections.Immutable (12)
System\Collections\Immutable\ImmutableQueue.cs (3)
56ImmutableStack<T> backwards = ImmutableStack<T>.Empty; 93ImmutableStack<T> forwards = ImmutableStack<T>.Empty; 100return new ImmutableQueue<T>(forwards: forwards, backwards: ImmutableStack<T>.Empty);
System\Collections\Immutable\ImmutableQueue_1.cs (4)
28private static readonly ImmutableQueue<T> s_EmptyField = new ImmutableQueue<T>(ImmutableStack<T>.Empty, ImmutableStack<T>.Empty); 160return new ImmutableQueue<T>(ImmutableStack.Create(value), ImmutableStack<T>.Empty); 203return new ImmutableQueue<T>(this.BackwardsReversed, ImmutableStack<T>.Empty);
System\Collections\Immutable\ImmutableStack.cs (4)
21return ImmutableStack<T>.Empty; 32return ImmutableStack<T>.Empty.Push(item); 45ImmutableStack<T> stack = ImmutableStack<T>.Empty; 75ImmutableStack<T> stack = ImmutableStack<T>.Empty;
System\Collections\Immutable\ImmutableStack_1.cs (1)
78return Empty;