Triple
ts
class Triple<A, B, C>Represents a triad of values.
There is no meaning attached to values in this class, it can be used for any purpose. Triple exhibits value semantics, i.e., two triples are equal if all three components are equal.
Properties
first
ts
first: AFirst value.
second
ts
second: BSecond value.
third
ts
third: CThird value.
Methods
toList
ts
toList(): [A, B, C]Converts this triple into a list.
toString
ts
toString(): stringReturns string representation of the Triple including its first, second and third values.