Erlang – sublist
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 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…
In this guide, we will discuss Erlang nth. Returns the Nth element of List. Syntax nth(N,List) Parameters N − The nth value to return from the list.Lst − The list of elements.…
In this guide, we will discuss Erlang merge. Returns the sorted list formed by merging all the sub-lists of List Of Lists. All these sub-lists must be sorted prior to…
In this guide, we will discuss Erlang min. Returns the element of the list which has the minimum value. Syntax min(lst1) Parameters Lst1 − The list of elements. Return Value Returns…
In this guide, we will discuss Erlang member. Checks if an element is present in the list or not. Syntax member(element, lst1) Parameters Element − The element to search in the…
In this guide, we will discuss Erlang max. Returns the element of the list which has the maximum value. Syntax max(lst1) Parameters Lst1 − The list of elements. Return Value Returns…
In this guide, we will discuss Erlang last. Returns the last element of the list. Syntax last(lst1) Parameters Lst1 − The list of elements. Return Value Returns the last element of…