KtTriple<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.
@param A type of the first value. @param B type of the second value. @param C type of the third value. @property first First value. @property second Second value. @property third Third value.
- Available extensions
Constructors
- KtTriple(A first, B second, C third)
-
const
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
override
Operators
-
operator ==(
Object other) → bool -
The equality operator.
override