Erlang – delete
In this guide, we will discuss Erlang delete. This method is used to delete an existing file. Syntax delete(filename) Parameters filename − The name and destination of the file which needs…
In this guide, we will discuss Erlang delete. This method is used to delete an existing file. Syntax delete(filename) Parameters filename − The name and destination of the file which needs…
In this guide, we will discuss Erlang copy. This method is used to make a copy of an existing file. Syntax copy(source,destination) Parameters Source − The name of the source file…
In this guide, we will discuss Erlang write. This method is used to write the contents to a file. Syntax write(FileHandler,text) Parameters FileHandler − This is the handle to a file.…
In this guide, we will discuss Erlang file_read. There is a method available to allow the reading of all the contents of a file at one time. This is done…
In this guide, we will discuss Erlang File I/O. Erlang provides a number of methods when working with I/O. It has easier classes to provide the following functionalities for files…
In this guide, we will discuss erlang sum. Returns the sum of elements in the list. Syntax sum(lst) Parameters Lst − The list of elements. Return Value Returns the sum of…
In this guide, we will discuss Erlang sublidtReturns a sublist of elements. Syntax sublist(lst,len) Parameters Lst − The list of elements.Len − The number of elements from which the sub list should…
In this guide, we will discuss Erlang sort. Sorts a list of elements. Syntax sort(lst) Parameters Lst − The list of elements which needs to be sorted. Return Value Returns a…
In this guide, we will discuss Erlang reverse. Reverses a list of elements. Syntax reverse(lst) Parameters Lst − The list of elements which needs to be reversed. Return Value Returns a…
In this guide, we will discuss Erlang nthtail. Returns the Nth tail of the List, that is, the sublist of List starting at N+1 and continuing up to the end…