8 implementations of FindItemIndex
System.Collections.Immutable (8)
System\Collections\Frozen\DefaultFrozenSet.cs (1)
48
public int
FindItemIndex
(T item) => _set.FindItemIndex(item);
System\Collections\Frozen\Int32\Int32FrozenSet.cs (1)
68
public int
FindItemIndex
(int item) => _set.FindItemIndex(item);
System\Collections\Frozen\SmallFrozenSet.cs (1)
50
public int
FindItemIndex
(T item) => _set.FindItemIndex(item);
System\Collections\Frozen\SmallValueTypeComparableFrozenSet.cs (1)
72
public int
FindItemIndex
(T item) => _set.FindItemIndex(item);
System\Collections\Frozen\SmallValueTypeDefaultComparerFrozenSet.cs (1)
52
public int
FindItemIndex
(T item) => _set.FindItemIndex(item);
System\Collections\Frozen\String\LengthBucketsFrozenSet.cs (1)
116
public int
FindItemIndex
(string item) => _set.FindItemIndex(item);
System\Collections\Frozen\String\OrdinalStringFrozenSet.cs (1)
118
public int
FindItemIndex
(string item) => _set.FindItemIndex(item);
System\Collections\Frozen\ValueTypeDefaultComparerFrozenSet.cs (1)
48
public int
FindItemIndex
(T item) => _set.FindItemIndex(item);
3 references to FindItemIndex
System.Collections.Immutable (3)
System\Collections\Frozen\FrozenSetInternalBase.cs (3)
135
if (_thisSet.
FindItemIndex
(element) >= 0)
211
int index = _thisSet.
FindItemIndex
(item);
243
if (_thisSet.
FindItemIndex
(element) < 0)