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