2.5.29. Tuple

TODO.

2.5.29.1. Instruction

target = equal op1 op2 [tuple::Equal]
Target:bool
Operator 1:tuple<*>
Operator 2:tuple<*>

Returns True if the tuple in op1 equals the tuple in op2.

target = tuple.index op1 op2 [tuple::Index]
Target:any
Operator 1:tuple<*>
Operator 2:int<*>

Returns the tuple’s value with index op2. The index is zero-based. op2 must be an integer constant.

target = tuple.length op1 [tuple::Length]
Target:int<64>
Operator 1:tuple<*>

Returns the number of elements that the tuple op1 has.