int FindLastIndex(Predicate< T > match)
T? FindLast(Predicate< T > match)
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)
bool Exists(Predicate< T > match)
ImmutableList< T > FindAll(Predicate< T > match)
int FindLastIndex(int startIndex, Predicate< T > match)
ImmutableList< T > GetRange(int index, int count)
int FindIndex(Predicate< T > match)
int FindIndex(int startIndex, int count, Predicate< T > match)
T? Find(Predicate< T > match)
void ForEach(Action< T > action)
int FindIndex(int startIndex, Predicate< T > match)
bool TrueForAll(Predicate< T > match)
ImmutableList< TOutput > ConvertAll< TOutput >(Func< T, TOutput > converter)