Implemented interface member:
17 references to Count
Test.Utilities (17)
ArrayBuilder.cs (16)
34
var result = new T[_builder.
Count
];
152
=> FindIndex(0, this.
Count
, match);
155
=> FindIndex(startIndex, this.
Count
- startIndex, match);
236
if (
Count
== 0)
250
if (
Count
== 0)
255
var tmp = ArrayBuilder<U>.GetInstance(
Count
);
270
if (_builder.Capacity ==
Count
)
312
if (this.
Count
!= 0)
333
Debug.Assert(builder.
Count
== 0);
389
if (this.
Count
== 1)
397
if (this.
Count
== 0)
404
var accumulator = new Dictionary<K, ArrayBuilder<T>>(
Count
, comparer);
405
for (int i = 0; i <
Count
; i++)
479
Debug.Assert(limit <=
Count
);
502
for (int i = 0; i <
Count
; i++)
516
using var result = ArrayBuilder<S>.GetInstance(
Count
);
ArrayBuilder.Enumerator.cs (1)
30
return _index < _builder.
Count
;