Android Utililty Methods Short Array Fill

List of utility methods to do Short Array Fill

Description

The list of methods to do Short Array Fill are organized into topic(s).

Method

voidfill(short[] array, short value)
fill
for (int i = 0; i < array.length; i++) {
    array[i] = value;