|
static bool | All< T > (List< T > list, params Func< T, bool >[] predicates) |
|
static bool | All< T > (List< T > list, Func< T, bool > predicate) |
|
static bool | All< T > (T[] list, Func< T, bool > predicate) |
|
static Func< T, bool > | And< T > (params Func< T, bool >[] predicates) |
|
static bool | Any< T > (List< T > list, Func< T, bool > predicate) |
|
static bool | Any< T > (T[] list, Func< T, bool > predicate) |
|
static Vector3 | CamToCamReposition (Vector3 originalPos, Camera fromCam, Camera toCam) |
|
static string | ColorToHex (Color32 c, bool alpha=false) |
|
static int | Count< T > (T[] list, Func< T, bool > predicate) |
|
static string | CutString (string s, int l, string add) |
|
static string | DecToHex (int n, bool doubleDigit=true) |
|
static string | GetYesNoUIString (bool yes) |
|
static char | HexToChar (string hex, bool doubleDigit=true) |
|
static string | Repeat (string repeat, int count) |
|
static int | SortAscDescPrimarySecondary (bool asc, int comp1, int comp2) |
| Sorts by comp1 asc/desc and if both are equal, sorts by comp2 always asc More...
|
|
static int | SortAscDescPrimarySecondary (bool asc, params int[] comp) |
| Sorts by comp[0] to comp[n] asc/desc by the first comp != 0 More...
|
|
static string | StringListToString (List< string > list) |
|
static int | Sum< T > (List< T > list, Func< T, int > predicate) |
|
static double | Sum< T > (List< T > list, Func< T, double > predicate) |
|
static List< T > | Where< T > (List< T > list, Func< T, bool > predicate) |
| Returns a list where all elements satisfied the condition predicate. More...
|
|
static List< T > | WhereMutating< T > (ref List< T > list, Func< T, bool > predicate) |
| Returns a modified list where all elements satisfied the condition predicate. Modifies the input list More...
|
|