Triple


Description:

public Triple (owned A first, owned B second, owned C third)

Creates a Triple with the given values.

Example:

    var triple = new Triple<string,string,string> ("a", "b", "c");
assert (triple.first () == "a");

Parameters:

first

the first value.

second

the second value.

third

the third value.