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

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

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

Definition at line 71 of file ImmutableList.cs.

72 {
73 Requires.NotNull(list, "list");
74 return list.IndexOf(item, 0, list.Count, EqualityComparer<T>.Default);
75 }

References System.item, and System.list.