Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
IImmutableListQueries.cs
Go to the documentation of this file.
2
4
6{
8
10
12
13 void CopyTo(T[] array);
14
15 void CopyTo(T[] array, int arrayIndex);
16
17 void CopyTo(int index, T[] array, int arrayIndex, int count);
18
20
22
24
26
28
30
32
34
36
38
40
42
44
46}
int BinarySearch(int index, int count, T item, IComparer< T >? comparer)
void CopyTo(int index, T[] array, int arrayIndex, int count)
int FindLastIndex(int startIndex, int count, Predicate< T > match)
int BinarySearch(T item, IComparer< T >? comparer)
void CopyTo(T[] array, int arrayIndex)
ImmutableList< T > FindAll(Predicate< T > match)
int FindLastIndex(int startIndex, Predicate< T > match)
ImmutableList< T > GetRange(int index, int count)
int FindIndex(int startIndex, int count, Predicate< T > match)
int FindIndex(int startIndex, Predicate< T > match)
ImmutableList< TOutput > ConvertAll< TOutput >(Func< T, TOutput > converter)