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