MCPcopy Create free account
hub / github.com/codenameone/CodenameOne / fill

Method fill

Ports/CLDC11/src/java/util/Arrays.java:874–878  ·  view source on GitHub ↗
(byte[] array, byte value)

Source from the content-addressed store, hash-verified

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 ///

Callers 10

clearMethod · 0.95
clearMethod · 0.95
clearMethod · 0.95
growAtEndMethod · 0.95
growAtFrontMethod · 0.95
removeRangeMethod · 0.95
clearMethod · 0.95
removeRangeMethod · 0.95
setSizeMethod · 0.95
clearMotionHistoryMethod · 0.95

Calls 1

checkBoundsMethod · 0.95

Tested by

no test coverage detected