Implemented interface members:
14 references to Count
Microsoft.CodeAnalysis.Collections.Package (14)
ImmutableSegmentedList`1.cs (2)
81public int Count => _list.Count; 86public bool IsEmpty => _list.Count == 0;
ImmutableSegmentedList`1+ValueBuilder.cs (3)
33public readonly int Count => ReadOnlyList.Count; 62if ((uint)index >= (uint)ReadOnlyList.Count) 106if (ReadOnlyList.Count != 0)
SegmentedList`1.cs (9)
288return Count - 1; 314SegmentedArray.Copy(list._items, 0, _items, _size, list.Count); 377=> BinarySearch(0, Count, item, null); 380=> BinarySearch(0, Count, item, comparer); 735Count == 0 ? GetEmptyEnumerator() : 926SegmentedArray.Copy(list._items, 0, _items, index, list.Count); 1184=> Reverse(0, Count); 1216=> Sort(0, Count, null); 1221=> Sort(0, Count, comparer);