SkyLib
1.1.1
SkyLib
/
de.skyslycer.skylib.data
/
Trio
Trio
public
class
Trio
<
F
,
S
,
T
>
A data class for three values.
Constructors
Functions
Parameters
Parameters
<F>
The first value
<S>
The second value
<T>
The third value
Constructors
Trio
Link copied to clipboard
public
void
Trio
(
F
first
,
S
second
,
T
third
)
Create a new trio.
Functions
build
Link copied to clipboard
public
static
Trio
<
F
,
S
,
T
>
build
<
F
,
S
,
T
>
(
F
first
,
S
second
,
T
third
)
Build a trio.
first
Link copied to clipboard
public
F
first
(
)
Get the first value.
second
Link copied to clipboard
public
S
second
(
)
Get the second value.
third
Link copied to clipboard
public
T
third
(
)
Get the third value.