Triple<A, B, C> class

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. An example of decomposing it into values:

A type of the first value. B type of the second value. C type of the third value. first First value. second Second value. third Third value.

Available Extensions

Constructors

Triple(A first, B second, C third)
const

Properties

first → A
final
hashCode int
The hash code for this object.
no setteroverride
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
second → B
final
third → C
final

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toString() String
Returns string representation of the Triple including its first, second and third values.
override

Operators

operator ==(Object other) bool
The equality operator.
override