Larger buttons (2)

This commit is contained in:
M66B
2022-08-20 08:16:14 +02:00
parent faefc29572
commit 7741037edc
10 changed files with 74 additions and 52 deletions

View File

@@ -2879,6 +2879,20 @@ public class Helper {
return result;
}
static int[] toIntArray(List<Integer> list) {
int[] result = new int[list.size()];
for (int i = 0; i < list.size(); i++)
result[i] = list.get(i);
return result;
}
static List<Integer> fromIntArray(int[] array) {
List<Integer> result = new ArrayList<>();
for (int i = 0; i < array.length; i++)
result.add(array[i]);
return result;
}
static long[] toLongArray(List<Long> list) {
long[] result = new long[list.size()];
for (int i = 0; i < list.size(); i++)