Erlang – from_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 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…
In this guide, we will discuss Erlang list_to_atom. This method is used to convert a list item to an atom. Syntax list_to_atom(listvalue) Parameters listvalue − This is the list value which…
In this guide, we will discuss Erlang atom_to_list. This method is used to convert an atom to a list. Syntax Atom_to_list(atom) Parameters atom − This is the atom which needs to…
In this guide, we will discuss Erlang is_atom. This method is used to determine if a term is indeed an atom. Syntax is_atom(term) Parameters term − This is the term value…
In this guide, we will discuss Erlang Atoms. An atom is a literal, a constant with name. An atom is to be enclosed in single quotes (') if it does…
In this guide, we will discuss Erlang is_dir. This method is used to determine if a directory is indeed a directory. This method is a part of the filelib library.…
In this guide, we will discuss Erlang is_file. This method is used to determine if a file is indeed a file. This method is a part of the filelib library.…