Implemented interface members:
17 references to Count
Microsoft.CodeAnalysis.CodeStyle (17)
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)
ObjectReader.cs (1)
338var id = _values.Count;
SegmentedList`1.cs (7)
260return Count - 1; 306=> BinarySearch(0, Count, item, null); 309=> BinarySearch(0, Count, item, comparer); 774SegmentedArray.Copy(list._items, 0, _items, index, list.Count); 1032=> Reverse(0, Count); 1064=> Sort(0, Count, null); 1069=> Sort(0, Count, comparer);
TokenStream.cs (3)
84for (var i = 1; i < _tokens.Count; i++) 134public int TokenCount => _tokens.Count; 520for (var i = tokenIndex; i < _tokens.Count; i++)
TokenStream.Iterator.cs (1)
39_maxCount = _tokensIncludingZeroWidth.Count - 1;