Tuple
classin packageklyn.collections
public class Tuple<...Ts> extends Object:
└ Tuple
Immutable positional tuple. A tuple is a fixed-size ordered product where each position may carry a distinct type.
pair as Tuple<String, Int> = ("age", 42)
print(pair[0])   # "age"
print(pair[1])   # 42
@param <...Ts> Positional element types.
Properties
Modifier and Type Member Description
public readonly native property size
size as ULong
Number of elements in this tuple.
Properties inherited from Object: type
Constructors
Modifier and Type Member Description
public native Tuple
Tuple(values... as Object)
Builds a tuple from the provided positional values.
Methods
Modifier and Type Member Description
public native override toString
toString() as String
Returns a normalized textual representation.
Methods inherited from Object: fromJson, toDict, toJson, toString, toXml
Operators
Modifier and Type Member Description
public readonly native operator[](index as Int) as Object Returns the value at the given position.