Erlang – term_to_binary
In this guide, we will discuss Erlang term_to_binary. This method is used to convert a term to binary. Syntax term_to_binary(term) Parameters term − This is the term value which needs to…
In this guide, we will discuss Erlang term_to_binary. This method is used to convert a term to binary. Syntax term_to_binary(term) Parameters term − This is the term value which needs to…
In this guide, we will discuss Erlang Split_binary. This method is used to split the binary list based on the index position specified. Syntax split_binary(binarylst,index) Parameters binarylst − This is the…
In this guide, we will discuss Erlang List_to_binary. This method is used to convert an existing list to a list of binaries. Syntax list_to_binary(lst) Parameters Lst − This is the list…
In this guide, we will discuss Erlang Binaries. Use a data structure called a binary to store large quantities of raw data. Binaries store data in a much more space…
In this guide, we will discuss Erlang universaltime. Returns the current date and time according to Universal Time Coordinated (UTC), also called GMT, in the form {{Year, Month, Day}, {Hour,…
In this guide, we will discuss Erlang Processes. Returns a list of process identifiers corresponding to all the processes currently existing on the local node. Syntax processes() Parameters None Return…
In this guide, we will discuss Erlang Ports. Returns a list of all ports on the local node. Syntax ports() Parameters None Return Value Returns a list of all ports…
In this guide, we will discuss Erlang now. This method returns the tuple {MegaSecs, Secs, MicroSecs} which is the elapsed time since 00:00 GMT, January 1, 1970. Syntax now() Parameters…
In this guide, we will discuss Erlang Memory. Returns a list containing information about memory dynamically allocated by the Erlang emulator. Each element of the list is a tuple {Type,…
In this guide, we will discuss Erlang localtime. The method is used to give the local date and time in the system. Syntax localtime() Parameters None Return Value The method…