Implemented interface members:
15 references to Count
Microsoft.CodeAnalysis (15)
src\Dependencies\Collections\Extensions\ImmutableArrayExtensions.cs (1)
1353
int high = array.
Count
- 1;
src\Dependencies\Collections\Segmented\ImmutableSegmentedList`1.cs (11)
132
if (unchecked((uint)index) >= (uint)self.
Count
)
297
if (index == 0 && count == self.
Count
)
314
if (index == self.
Count
)
329
if (index == self.
Count
)
345
if (count < 0 || count > self.
Count
)
377
var index = self.IndexOf(value, 0,
Count
, equalityComparer);
456
if (count == 0 && index >= 0 && index <= self.
Count
)
499
if (self.
Count
< 2)
529
if (self.
Count
< 2)
543
if (self.
Count
< 2)
562
if (self.
Count
< 2)
src\Dependencies\Collections\Segmented\ImmutableSegmentedListExtensions.cs (3)
69
return immutableList.
Count
> 0
70
? immutableList[immutableList.
Count
- 1]
93
for (var i = immutableList.
Count
- 1; i >= 0; i--)