2 instantiations of ConsList
Microsoft.CodeAnalysis.CodeStyle (2)
src\Compilers\Core\Portable\InternalUtilities\ConsList`1.cs (2)
18public static readonly ConsList<T> Empty = new(); 123return new ConsList<T>(value, this);
10 references to ConsList
Microsoft.CodeAnalysis.CodeStyle (10)
src\Compilers\Core\Portable\InternalUtilities\ConsList`1.cs (10)
18public static readonly ConsList<T> Empty = new(); 21private readonly ConsList<T>? _tail; 26private ConsList<T> _tail; 28internal Enumerator(ConsList<T> list) 47var currentTail = _tail; 48var newTail = currentTail._tail; 87public ConsList(T head, ConsList<T> tail) 106public ConsList<T> Tail 121public ConsList<T> Push(T value) 145for (ConsList<T> list = this; list._tail != null; list = list._tail)