Tuples
This lesson will highlight the key features of the tuple data structure.
We'll cover the following...
The Structure
A tuple is an ordered group of data elements. These elements can have different types.
The size of the tuple can be anything. However, once it has been created, the tuple is immutable.
The elements of a tuple are known as its components.
The tuple is one of the most basic data structures in Reason. We’ll see how it forms the basis for more complex structures.
Let’s take a look at ...