public static void Swap <T>(this T[] self, int index1, int index2) { ArrayTUtil.Swap(self, index1, self, index2); }
public static T[] GetArrayByIndexList <T>(this T[] self, List <int> indexList) { return(ArrayTUtil.GetArrayByIndexList(self, indexList)); }
public static T[] GetArrayByIndexes <T>(this T[] self, int[] indexes, int?indexesLength) { return(ArrayTUtil.GetArrayByIndexes(self, indexes, indexesLength)); }