|
static bool | AllQ< T > (this T[] source, Func< T, bool > predicate) |
|
static bool | AllQ< T > (this List< T > source, Func< T, bool > predicate) |
|
static bool | AllQ< T > (this IReadOnlyList< T > source, Func< T, bool > predicate) |
|
static bool | AllQ< T > (this IEnumerable< T > source, Func< T, bool > predicate) |
|
static bool | AnyQ< T > (this T[] source, Func< T, bool > predicate) |
|
static bool | AnyQ< T > (this List< T > source) |
|
static bool | AnyQ< T > (this List< T > source, Func< T, bool > predicate) |
|
static bool | AnyQ< T > (this IReadOnlyList< T > source) |
|
static bool | AnyQ< T > (this IReadOnlyList< T > source, Func< T, bool > predicate) |
|
static bool | AnyQ< T > (this IEnumerable< T > source) |
|
static bool | AnyQ< T > (this IEnumerable< T > source, Func< T, bool > predicate) |
|
static float | AverageQ (this float[] source) |
|
static float | AverageQ (this IEnumerable< float > source) |
|
static float | AverageQ< T > (this T[] source, Func< T, float > selector) |
|
static float | AverageQ< T > (this List< T > source, Func< T, float > selector) |
|
static float | AverageQ< T > (this IReadOnlyList< T > source, Func< T, float > selector) |
|
static float | AverageQ< T > (this IEnumerable< T > source, Func< T, float > selector) |
|
static bool | ContainsQ< T > (this T[] source, T value) |
|
static bool | ContainsQ< T > (this List< T > source, T value) |
|
static bool | ContainsQ< T > (this IReadOnlyList< T > source, T value) |
|
static bool | ContainsQ< T > (this IEnumerable< T > source, T value) |
|
static bool | ContainsQ< T > (this T[] source, Func< T, bool > predicate) |
| Returns true if source contains value and false otherwise.
|
|
static bool | ContainsQ< T > (this List< T > source, Func< T, bool > predicate) |
|
static bool | ContainsQ< T > (this IReadOnlyList< T > source, Func< T, bool > predicate) |
|
static bool | ContainsQ< T > (this IEnumerable< T > source, Func< T, bool > predicate) |
|
static int | CountQ< T > (this T[] source, T value) |
|
static int | CountQ< T > (this List< T > source, T value) |
|
static int | CountQ< T > (this IReadOnlyList< T > source, T value) |
|
static int | CountQ< T > (this T[] source, Func< T, bool > predicate) |
|
static int | CountQ< T > (this List< T > source, Func< T, bool > predicate) |
|
static int | CountQ< T > (this IReadOnlyList< T > source, Func< T, bool > predicate) |
|
static int | CountQ< T > (this IEnumerable< T > source, Func< T, bool > predicate) |
|
static int | CountQ< T > (this IEnumerable< T > source) |
|
static int | FindIndexQ< T > (this T[] source, T value) |
|
static int | FindIndexQ< T > (this List< T > source, T value) |
|
static int | FindIndexQ< T > (this IReadOnlyList< T > source, T value) |
|
static int | FindIndexQ< T > (this IEnumerable< T > source, T value) |
|
static int | FindIndexQ< T > (this T[] source, Func< T, bool > predicate) |
|
static int | FindIndexQ< T > (this List< T > source, Func< T, bool > predicate) |
|
static int | FindIndexQ< T > (this IReadOnlyList< T > source, Func< T, bool > predicate) |
|
static int | FindIndexQ< T > (this IEnumerable< T > source, Func< T, bool > predicate) |
|
static T | FirstOrDefaultQ< T > (this T[] source, Func< T, bool > predicate) |
|
static T | FirstOrDefaultQ< T > (this List< T > source, Func< T, bool > predicate) |
|
static T | FirstOrDefaultQ< T > (this IReadOnlyList< T > source, Func< T, bool > predicate) |
| Returns the first element of the sequence that satisfies a condition or a default value if no such element is found.
|
|
static T | FirstOrDefaultQ< T > (this IEnumerable< T > source, Func< T, bool > predicate) |
|
static int | MaxQ (this int[] source) |
|
static int | MaxQ (this List< int > source) |
|
static T | MaxQ< T > (this T[] source) |
|
static T | MaxQ< T > (this List< T > source) |
|
static int | MaxQ (this IReadOnlyList< int > source) |
|
static T | MaxQ< T > (this IReadOnlyList< T > source) |
|
static float | MaxQ< T > (this T[] source, Func< T, float > selector) |
|
static int | MaxQ< T > (this T[] source, Func< T, int > selector) |
|
static float | MaxQ< T > (this List< T > source, Func< T, float > selector) |
|
static int | MaxQ< T > (this List< T > source, Func< T, int > selector) |
|
static float | MaxQ< T > (this IReadOnlyList< T > source, Func< T, float > selector) |
|
static int | MaxQ< T > (this IReadOnlyList< T > source, Func< T, int > selector) |
|
static float | MaxQ< T > (this IEnumerable< T > source, Func< T, float > selector) |
|
static int | MaxQ< T > (this IEnumerable< T > source, Func< T, int > selector) |
|
static ValueTuple< T, T, T > | MaxElements3< T > (this IEnumerable< T > collection, Func< T, float > func) |
|
static IOrderedEnumerable< T > | OrderByQ< T, S > (this IEnumerable< T > source, Func< T, S > selector) |
|
static T[] | OrderByQ< T, TKey > (this T[] source, Func< T, TKey > selector) |
|
static T[] | OrderByQ< T, TKey > (this List< T > source, Func< T, TKey > selector) |
|
static T[] | OrderByQ< T, TKey > (this IReadOnlyList< T > source, Func< T, TKey > selector) |
|
static IEnumerable< R > | SelectQ< T, R > (this T[] source, Func< T, R > selector) |
|
static IEnumerable< R > | SelectQ< T, R > (this List< T > source, Func< T, R > selector) |
|
static IEnumerable< R > | SelectQ< T, R > (this IReadOnlyList< T > source, Func< T, R > selector) |
|
static IEnumerable< R > | SelectQ< T, R > (this IEnumerable< T > source, Func< T, R > selector) |
|
static int | SumQ< T > (this T[] source, Func< T, int > func) |
|
static float | SumQ< T > (this T[] source, Func< T, float > func) |
|
static int | SumQ< T > (this List< T > source, Func< T, int > func) |
|
static float | SumQ< T > (this List< T > source, Func< T, float > func) |
|
static int | SumQ< T > (this IReadOnlyList< T > source, Func< T, int > func) |
|
static float | SumQ< T > (this IReadOnlyList< T > source, Func< T, float > func) |
|
static float | SumQ< T > (this IEnumerable< T > source, Func< T, float > func) |
|
static int | SumQ< T > (this IEnumerable< T > source, Func< T, int > func) |
|
static T[] | ToArrayQ< T > (this T[] source) |
|
static T[] | ToArrayQ< T > (this List< T > source) |
|
static T[] | ToArrayQ< T > (this IReadOnlyList< T > source) |
|
static T[] | ToArrayQ< T > (this IEnumerable< T > source) |
|
static List< T > | ToListQ< T > (this T[] source) |
|
static List< T > | ToListQ< T > (this List< T > source) |
|
static List< T > | ToListQ< T > (this IReadOnlyList< T > source) |
|
static List< T > | ToListQ< T > (this IEnumerable< T > source) |
|
static IEnumerable< T > | WhereQ< T > (this T[] source, Func< T, bool > predicate) |
|
static IEnumerable< T > | WhereQ< T > (this List< T > source, Func< T, bool > predicate) |
|
static IEnumerable< T > | WhereQ< T > (this IReadOnlyList< T > source, Func< T, bool > predicate) |
|
static IEnumerable< T > | WhereQ< T > (this IEnumerable< T > source, Func< T, bool > predicate) |
|