Erlang – is_tuple
In this guide, we will discuss Erlang is_tuple. This method is used to determine is the term provided is indeed a tuple. Syntax is_tuple(tuple) Parameters Tuple − This is the tuple…
In this guide, we will discuss Erlang is_tuple. This method is used to determine is the term provided is indeed a tuple. Syntax is_tuple(tuple) Parameters Tuple − This is the tuple…
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.…
In this guide, we will discuss Erlang remove. This method is used to remove a key value from the map. Syntax remove(key,map) Parameters key − This is the key which needs…
In this guide, we will discuss Erlang values. This method is used to return all the values from a map. Syntax values(map) Parameters map1 − This is the map for which…
In this guide, we will discuss Erlang put. This method is used to add a key value pair to the map. Syntax put(key1,value1,map1) Parameters key1 − This is key which needs…
In this guide, we will discuss Erlang merge. This method is used to merge 2 maps. Syntax merge(map1,map2) Parameters map1 − This is first map which needs to be merged.map2 − This…
In this guide, we will discuss Erlang keys. This method is used to return all the keys from a map. Syntax keys(map) Parameters map − This is the map for which…
In this guide, we will discuss Erlang is_key. This method is used to determine if a particular key is defined as a key in the map. Syntax Is_key(key,map) Parameters key −…
In this guide, we will discuss Erlang get. This method is used to get the value of a particular key in the map. Syntax get(key,map) Parameters key − This is the…
In this guide, we will discuss Erlang find. This method is used to find if a particular key exists in the map. Syntax find(key,map) Parameters key − This is the list…