Public source code release

This commit is contained in:
YTKAB0BP
2024-11-01 08:28:55 +03:00
parent 20b730b1c8
commit 0b2ba24c7f
6691 changed files with 2325292 additions and 1 deletions
@@ -0,0 +1,17 @@
package ru.ytkab0bp.slicebeam.utils;
import androidx.annotation.Nullable;
public class ThreadLocalDoubleArray extends ThreadLocal<double[]> {
private final int size;
public ThreadLocalDoubleArray(int size) {
this.size = size;
}
@Nullable
@Override
protected double[] initialValue() {
return new double[size];
}
}