Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
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
main
Method · 0.95
scrambleWord
Method · 0.95
main
Method · 0.80
main
Method · 0.80
show
Method · 0.80
main
Method · 0.80
main
Method · 0.80
main
Method · 0.80
Calls
no outgoing calls
Tested by
1
main
Method · 0.64