Erlang – put
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 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…
In this guide, we will discuss Erlang from_list. This method is used to generate a map from a list. Syntax from_list(Lst) Parameters Lst − This is the list which needs to…
In this guide, we will discuss Erlang Maps. A map is a compound data type with a variable number of key-value associations. Each key-value association in the map is called…
In this guide, we will discuss Erlang binary_to_atom. This method is used to convert a binary value to an atom value. Syntax binary_to_atom(binaryvalue) Parameters binaryvalue − This is the binary value…
In this guide, we will discuss Erlang atom_to_binary. This method is used to convert an atom to a binary value. Syntax atom_to_binary(atom) Parameters atom − The atom which needs to be…