Create an empty Tuple
Create a Tuple from an array (alias for constructor)
Create a Tuple from multiple arguments
Create a Tuple of size 2 (pair)
Create a Tuple of size 3 (triple)
// Creating tuples
const t1 = Tuple([1, "hello", true])
const t2 = Tuple.of(1, "hello", true)
const pair = Tuple.pair("key", 42)
Tuple provides a type-safe, fixed-length array with functional operations.