元组

元组是其他 Erlang 项的固定长度有序序列。元组中的每个元素可以是任何类型的术语(任何数据类型)。

1> {1, 2, 3}.
{1,2,3}
2> {one, two, three}.
{one,two,three}
3> {mix, atom, 123, {<<1,2>>, [list]}}.
{mix,atom,123,{<<1,2>>,[list]}}