Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ IndexOf< T >() [2/4]

static int System.Collections.Immutable.ImmutableList< T >.IndexOf< T > ( this IImmutableList< T > list,
T item,
IEqualityComparer< T >? equalityComparer )
inlinestatic

Definition at line 77 of file ImmutableList.cs.

78 {
79 Requires.NotNull(list, "list");
80 return list.IndexOf(item, 0, list.Count, equalityComparer);
81 }

References System.item, and System.list.