Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/BruceEckel/OnJava8-Examples
/ tuple
Method
tuple
onjava/Tuple.java:9–11 ·
view source on GitHub ↗
(A a, B b)
Source
from the content-addressed store, hash-verified
7
8
public
class
Tuple {
9
public
static
<A, B> Tuple2<A, B> tuple(A a, B b) {
10
return
new
Tuple2<>(a, b);
11
}
12
public
static
<A, B, C> Tuple3<A, B, C>
13
tuple(A a, B b, C c) {
14
return
new
Tuple3<>(a, b, c);
Callers
7
newPair
Method · 0.80
main
Method · 0.80
f
Method · 0.80
f2
Method · 0.80
g
Method · 0.80
h
Method · 0.80
k
Method · 0.80
Calls
no outgoing calls
Tested by
5
f
Method · 0.64
f2
Method · 0.64
g
Method · 0.64
h
Method · 0.64
k
Method · 0.64