Create an empty Tuple
Create a Tuple from an array (alias for constructor)
Reconstruct a Tuple from a JSON envelope emitted by serialize().toJSON()
or instance toJSON(). Verifies @functype === "Tuple" if the marker is
present (the marker became canonical in 1.2.0; older envelopes are
accepted by leniently treating missing-marker as opt-in legacy).
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.