Erlang – register
In this guide, we will discuss Erlang register. This is used to register a process in the system. Syntax register(atom,pid) Parameters atom − This is the registered name to give to…
In this guide, we will discuss Erlang register. This is used to register a process in the system. Syntax register(atom,pid) Parameters atom − This is the registered name to give to…
In this guide, we will discuss Erlang Self. One of the most commonly used BIF, returns the pid of the calling processes. Syntax self() Parameters None Return Value Returns the…
In this guide, we will discuss Erlang registered. Returns a list with the names of all registered processes. Syntax registered() Parameters None Return Value Returns a list with the names…
In this guide, we will discuss Erlang pid_to_list. It converts a process id to a list. Syntax Pid_to_list(processid) Parameters processid − This is the process id which needs to be converted…
In this guide, we will discuss Erlang is_process_alive. This is called as is_process_alive(Pid). A Pid must refer to a process at the local node. It returns true if the process exists…
In this guide, we will discuss Erlang is_pid. This method is used to determine if a process id exists. Syntax Is_pid(processid) Parameters processid − This is the process id which needs…
In this guide, we will discuss Erlang Processes. The granularity of concurrency in Erlang is a process. A process is an activity/task that runs concurrently with and is independent from…
In this guide, we will discuss Erlang Funs. Funs are used to define anonymous functions in Erlang. The general syntax of an anonymous function is given below − Syntax F…
In this guide, we will discuss Erlang binary_to_atom. This method is used to convert a binary value to an atom. Syntax binary_to_atom(binaryvalue) Parameters binaryvalue − This is binary value which needs…
In this guide, we will discuss Erlang binary_to_list. This method is used to convert a binary value to a list. Syntax binary_to_list(binaryvalue) Parameters binaryvalue − This is binary value which needs…