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

Method primitive

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

Source from the content-addressed store, hash-verified

6
7public interface ConvertTo {
8 static boolean[] primitive(Boolean[] in) {
9 boolean[] result = new boolean[in.length];
10 for(int i = 0; i < in.length; i++)
11 result[i] = in[i]; // Autounboxing

Callers 14

mainMethod · 0.80
arrayMethod · 0.80
arrayMethod · 0.80
arrayMethod · 0.80
arrayMethod · 0.80
arrayMethod · 0.80
arrayMethod · 0.80
arrayMethod · 0.80
arrayMethod · 0.80
arrayMethod · 0.80
arrayMethod · 0.80
arrayMethod · 0.80

Calls

no outgoing calls

Tested by 1

mainMethod · 0.64