Arrays
An simple implementation of java.util.Arrays
| Methods |
| static void |
fill(char[] array, char x)
Fill an array with the given value.
|
| static void |
fill(char[] array, char x)
Fill an array with the given value.
Parameters:
array - the array
x - the value
|
| static void |
fill(byte[] array, byte x)
Fill an array with the given value.
|
| static void |
fill(byte[] array, byte x)
Fill an array with the given value.
Parameters:
array - the array
x - the value
|
| static void |
fill(int[] array, int x)
Fill an array with the given value.
|
| static void |
fill(int[] array, int x)
Fill an array with the given value.
Parameters:
array - the array
x - the value
|
| static void |
fillByte(byte[] array, byte x)
Fill an array with the given value.
|
| static void |
fillByte(byte[] array, byte x)
Fill an array with the given value.
Parameters:
array - the array
x - the value
|
| static void |
fillInt(int[] array, int x)
Fill an array with the given value.
|
| static void |
fillInt(int[] array, int x)
Fill an array with the given value.
Parameters:
array - the array
x - the value
|
|