9 overrides of FindItemIndex
System.Collections.Immutable (9)
System\Collections\Frozen\DefaultFrozenSet.cs (1)
18private protected override int FindItemIndex(T item)
System\Collections\Frozen\EmptyFrozenSet.cs (1)
21private protected override int FindItemIndex(T item) => -1;
System\Collections\Frozen\Int32\Int32FrozenSet.cs (1)
43private protected override int FindItemIndex(int item)
System\Collections\Frozen\SmallFrozenSet.cs (1)
27private protected override int FindItemIndex(T item)
System\Collections\Frozen\SmallValueTypeComparableFrozenSet.cs (1)
42private protected override int FindItemIndex(T item)
System\Collections\Frozen\SmallValueTypeDefaultComparerFrozenSet.cs (1)
31private protected override int FindItemIndex(T item)
System\Collections\Frozen\String\LengthBucketsFrozenSet.cs (1)
53private protected override int FindItemIndex(string? item)
System\Collections\Frozen\String\OrdinalStringFrozenSet.cs (1)
72private protected override int FindItemIndex(string item)
System\Collections\Frozen\ValueTypeDefaultComparerFrozenSet.cs (1)
20private protected override int FindItemIndex(T item)
2 references to FindItemIndex
System.Collections.Immutable (2)
System\Collections\Frozen\FrozenSet.cs (2)
308FindItemIndex(item) >= 0; 316int index = FindItemIndex(equalValue);