MCPcopy Create free account
hub / github.com/M66B/FairEmail / toLongArray

Method toLongArray

app/src/main/java/eu/faircode/email/Helper.java:3894–3899  ·  view source on GitHub ↗
(List<Long> list)

Source from the content-addressed store, hash-verified

3892 }
3893
3894 static long[] toLongArray(List<Long> list) {
3895 long[] result = new long[list.size()];
3896 for (int i = 0; i < list.size(); i++)
3897 result[i] = list.get(i);
3898 return result;
3899 }
3900
3901 static List<Long> fromLongArray(long[] array) {
3902 List<Long> result = new ArrayList<>();

Callers 13

updateMethod · 0.95
onExecutedMethod · 0.95
onSaveInstanceStateMethod · 0.95
handleExitMethod · 0.95
onSetFlagMethod · 0.95
onDeleteMethod · 0.95
onSynchronizeMessagesMethod · 0.95
doCommandMethod · 0.95
onSaveInstanceStateMethod · 0.95
onExecuteMethod · 0.95
onClickMethod · 0.95

Calls 2

sizeMethod · 0.65
getMethod · 0.45

Tested by

no test coverage detected