mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
Add Arrays.fill(* a,int start,int stop,* value).
This commit is contained in:
parent
6462c159aa
commit
ff17455baa
@ -485,29 +485,69 @@ public class Arrays {
|
|||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private static void checkRange(int len, int start, int stop) {
|
||||||
|
if (start < 0) {
|
||||||
|
throw new ArrayIndexOutOfBoundsException(start);
|
||||||
|
}
|
||||||
|
if (stop > len) {
|
||||||
|
throw new ArrayIndexOutOfBoundsException(stop);
|
||||||
|
}
|
||||||
|
if (start > stop) {
|
||||||
|
throw new IllegalArgumentException("start(" + start + ") > stop(" + stop + ")");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static void fill(int[] array, int value) {
|
public static void fill(int[] array, int value) {
|
||||||
for (int i=0;i<array.length;i++) {
|
for (int i=0;i<array.length;i++) {
|
||||||
array[i] = value;
|
array[i] = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void fill(int[] array, int start, int stop, int value) {
|
||||||
|
checkRange(array.length, start, stop);
|
||||||
|
for (int i=start;i<stop;i++) {
|
||||||
|
array[i] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static void fill(char[] array, char value) {
|
public static void fill(char[] array, char value) {
|
||||||
for (int i=0;i<array.length;i++) {
|
for (int i=0;i<array.length;i++) {
|
||||||
array[i] = value;
|
array[i] = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void fill(char[] array, int start, int stop, char value) {
|
||||||
|
checkRange(array.length, start, stop);
|
||||||
|
for (int i=start;i<stop;i++) {
|
||||||
|
array[i] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static void fill(short[] array, short value) {
|
public static void fill(short[] array, short value) {
|
||||||
for (int i=0;i<array.length;i++) {
|
for (int i=0;i<array.length;i++) {
|
||||||
array[i] = value;
|
array[i] = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void fill(short[] array, int start, int stop, short value) {
|
||||||
|
checkRange(array.length, start, stop);
|
||||||
|
for (int i=start;i<stop;i++) {
|
||||||
|
array[i] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static void fill(byte[] array, byte value) {
|
public static void fill(byte[] array, byte value) {
|
||||||
for (int i=0;i<array.length;i++) {
|
for (int i=0;i<array.length;i++) {
|
||||||
array[i] = value;
|
array[i] = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void fill(byte[] array, int start, int stop, byte value) {
|
||||||
|
checkRange(array.length, start, stop);
|
||||||
|
for (int i=start;i<stop;i++) {
|
||||||
|
array[i] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static void fill(boolean[] array, boolean value) {
|
public static void fill(boolean[] array, boolean value) {
|
||||||
for (int i=0;i<array.length;i++) {
|
for (int i=0;i<array.length;i++) {
|
||||||
@ -515,30 +555,65 @@ public class Arrays {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void fill(boolean[] array, int start, int stop, boolean value) {
|
||||||
|
checkRange(array.length, start, stop);
|
||||||
|
for (int i=start;i<stop;i++) {
|
||||||
|
array[i] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static void fill(long[] array, long value) {
|
public static void fill(long[] array, long value) {
|
||||||
for (int i=0;i<array.length;i++) {
|
for (int i=0;i<array.length;i++) {
|
||||||
array[i] = value;
|
array[i] = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void fill(long[] array, int start, int stop, long value) {
|
||||||
|
checkRange(array.length, start, stop);
|
||||||
|
for (int i=start;i<stop;i++) {
|
||||||
|
array[i] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static void fill(float[] array, float value) {
|
public static void fill(float[] array, float value) {
|
||||||
for (int i=0;i<array.length;i++) {
|
for (int i=0;i<array.length;i++) {
|
||||||
array[i] = value;
|
array[i] = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void fill(float[] array, int start, int stop, float value) {
|
||||||
|
checkRange(array.length, start, stop);
|
||||||
|
for (int i=start;i<stop;i++) {
|
||||||
|
array[i] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static void fill(double[] array, double value) {
|
public static void fill(double[] array, double value) {
|
||||||
for (int i=0;i<array.length;i++) {
|
for (int i=0;i<array.length;i++) {
|
||||||
array[i] = value;
|
array[i] = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static void fill(double[] array, int start, int stop, double value) {
|
||||||
|
checkRange(array.length, start, stop);
|
||||||
|
for (int i=start;i<stop;i++) {
|
||||||
|
array[i] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static <T> void fill(T[] array, T value) {
|
public static <T> void fill(T[] array, T value) {
|
||||||
for (int i=0;i<array.length;i++) {
|
for (int i=0;i<array.length;i++) {
|
||||||
array[i] = value;
|
array[i] = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public static <T> void fill(T[] array, int start, int stop, T value) {
|
||||||
|
checkRange(array.length, start, stop);
|
||||||
|
for (int i=start;i<stop;i++) {
|
||||||
|
array[i] = value;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
public static boolean[] copyOf(boolean[] array, int newLength) {
|
public static boolean[] copyOf(boolean[] array, int newLength) {
|
||||||
boolean[] result = new boolean[newLength];
|
boolean[] result = new boolean[newLength];
|
||||||
int length = array.length > newLength ? newLength : array.length;
|
int length = array.length > newLength ? newLength : array.length;
|
||||||
|
Loading…
Reference in New Issue
Block a user