8 references to Count
Microsoft.CodeAnalysis (8)
Collections\ImmutableArrayExtensions.cs (3)
945if (items.Count == 0) 950if (items.Count == 1) 955var builder = new T[self.Length + items.Count];
Collections\TemporaryArray`1.cs (4)
200if (_count + items.Count <= InlineCapacity) 232var count = this.Count; 282switch (this.Count) 462if (_nextIndex >= _array.Count)
Collections\TemporaryArrayExtensions.cs (1)
111=> array.Count > 0 ? array[0] : default;