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