Trio

public class Trio<F, S, T>

A data class for three values.

Parameters

<F>

The first value

<S>

The second value

<T>

The third value

Constructors

Link copied to clipboard
public void Trio(F first, S second, T third)
Create a new trio.

Functions

Link copied to clipboard
public static Trio<F, S, T> build<F, S, T>(F first, S second, T third)
Build a trio.
Link copied to clipboard
public F first()
Get the first value.
Link copied to clipboard
public S second()
Get the second value.
Link copied to clipboard
public T third()
Get the third value.