Erlang – is_process_alive
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_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…
In this guide, we will discuss Erlang binary_to_integer. This method is used to convert a binary value to a integer value. Syntax binary_to_integer(binaryvalue) Parameters binaryvalue − This is binary value which…
In this guide, we will discuss Erlang binary_to_float. This method is used to convert a binary value to a float value. Syntax binary_to_float(binaryvalue) Parameters binaryvalue − this is binary value which…
In this guide, we will discuss Erlang binary_part. This method is used to extract a part of the binary string. Syntax binary_part(bitstring,{startposition,len}) Parameters bitstring − This is bitstring which needs to…
In this guide, we will discuss Erlang is_binary. This method is used to check if a bitstring is indeed a binary value. Syntax is_binary(bitstring) Parameters bitstring − This is bitstring which…