Erlang – Strings
In this guide, we will discuss Erlang Strings. A String literal is constructed in Erlang by enclosing the string text in quotations. Strings in Erlang need to be constructed using…
In this guide, we will discuss Erlang Strings. A String literal is constructed in Erlang by enclosing the string text in quotations. Strings in Erlang need to be constructed using…
In this guide, we will discuss Erlang Is_Integer. The method checks if a number is an integer value. Syntax Is_Integer(X) Parameters X - A number value. Return Value The return…
In this guide, we will discuss Is_float in Erlang. The method checks if a number is a float value. Syntax Is_float(X) Parameters X - A number value. Return Value The…
In this guide, we will discuss Erlang float. The method converts a number to a float value. Syntax float(X) Parameters X - A number value. Return Value The return value…
In this guide, we will discuss Erlang log. The method returns the logarithmic of the specified value. Syntax log(X) Parameters X - A value is specified for the logarithmic function.…
In this guide, we will discuss abs in Erlang. The method returns the absolute value of the specified number. Syntax abs(X) Parameters X - A value is specified for the…
In this guide, we will discuss Erlang exp. The method returns the exponential of the specified value. Syntax exp(X) Parameters X - A value is specified for the exponential function.…
In this guide, we will discuss Erlang atan. The method returns the arctangent of the specified value. Syntax atan(X) Parameters X - A value is specified for the arctangent function.…
In this guide, we will discuss Erlang acos. The method returns the arcsine of the specified value. Syntax acos(X) Parameters X - A value is specified for the arccosine function.…
In this guide, we will discuss Erlang Asin. The method returns the arcsine of the specified value. Syntax asin(X) Parameters X - A value is specified for the arcsine function.…