Erlang – Tuples

Erlang tuples

In this guide, we will discuss Erlang Tuples. A tuple is a compound data type with a fixed number of terms. Each term in the Tuple is called an element. The number of elements is said to be the size of the Tuple.

An example of how the Tuple data type can be used is shown in the following program.

Here we are defining a Tuple P which has 3 terms. The tuple_size is an inbuilt function defined in Erlang which can be used to determine the size of the Tuple.

Example

-module(helloworld). 
-export([start/0]). 

start() ->
   P = {john,24,{june,25}} , 
   io:fwrite("~w",[tuple_size(P)]).

The output of the above program will be as follows.

Output

3

Let’s look at some more operations which are available for tuples.

Sr.No.Methods & Description
1is_tuple
This method is used to determine is the term provided is indeed a tuple.
2list_to_tuple
This method is to convert a list to a tuple.
3tuple_to_list
This method is convert a tuple to a list.

Next Topic : Click Here

This Post Has One Comment

Leave a Reply