PolyTuple<T, U> class

Basic two value tuple, where the values have different types.

Use tuple.x, or tuple.y to lookup values. For tuples containing values of the same type, use Tuple instead.

Constructors

PolyTuple(T x, U y)

Properties

hashCode int
The hash code for this object.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited
x ↔ T
getter/setter pair
y ↔ U
getter/setter pair

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
toList() List
toString() String
A string representation of this object.
inherited

Operators

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