MCPcopy Index your code
hub / github.com/BruceEckel/OnJava8-Examples / boxed

Method boxed

onjava/ConvertTo.java:57–57  ·  view source on GitHub ↗
(boolean[] in)

Source from the content-addressed store, hash-verified

55 }
56 // Convert from primitive array to wrapped array:
57 static Boolean[] boxed(boolean[] in) {
58 Boolean[] result = new Boolean[in.length];
59 for(int i = 0; i < in.length; i++)
60 result[i] = in[i]; // Autoboxing

Callers 8

mainMethod · 0.95
scrambleWordMethod · 0.95
mainMethod · 0.80
mainMethod · 0.80
showMethod · 0.80
mainMethod · 0.80
mainMethod · 0.80
mainMethod · 0.80

Calls

no outgoing calls

Tested by 1

mainMethod · 0.64