13 references to Count
System.Collections.Immutable (13)
System\Collections\Immutable\ImmutableHashSet_1.Builder.cs (5)
123
_count = result.
Count
; // whether the offset or absolute, since the base is 0, it's no difference.
231
return result.
Count
!= 0;
246
return result.
Count
!= 0;
442
_count += result.
Count
;
446
_count = result.
Count
;
System\Collections\Immutable\ImmutableHashSet_1.cs (3)
792
count += result.
Count
;
846
count += mutationResult.
Count
;
856
count += mutationResult.
Count
;
System\Collections\Immutable\ImmutableHashSet_1.MutationResult.cs (5)
12
/// Interpretations for a <see cref="MutationResult.
Count
"/> member.
17
/// The <see cref="MutationResult.
Count
"/> member describes an adjustment to the previous count of the collection.
22
/// The <see cref="MutationResult.
Count
"/> member describes the actual count of the collection.
82
/// Gets the appropriate interpretation for the <see cref="
Count
"/> property; whether to be a count adjustment or total count.
97
int count = this.
Count
;