(byte[] array, byte value)
| 872 | /// |
| 873 | /// - `value`: the `byte` element. |
| 874 | public static void fill(byte[] array, byte value) { |
| 875 | for (int i = 0; i < array.length; i++) { |
| 876 | array[i] = value; |
| 877 | } |
| 878 | } |
| 879 | |
| 880 | /// Fills the specified range in the array with the specified element. |
| 881 | /// |
no test coverage detected