# Functions
Abs returns the absolute value of x.
AngleToRadian converts angle value to radian value.
Average return average value of numbers.
CeilToFloat round up to n decimal places.
CeilToString round up to n decimal places.
Cos returns the cosine of the radian argument.
Div returns the result of x divided by y.
Exponent calculate x^n.
Factorial calculate x!.
Fibonacci calculate fibonacci number before n.
FloorToFloat round down to n decimal places.
FloorToString round down to n decimal places.
GCD return greatest common divisor (GCD) of integers.
IsPrime checks if number is prime number.
LCM return Least Common Multiple (LCM) of integers.
Log returns the logarithm of base n.
Max return max value of numbers.
MaxBy return the maximum value of a slice using the given comparator function.
Min return min value of numbers.
MinBy return the minimum value of a slice using the given comparator function.
Percent calculate the percentage of value to total.
PointDistance get two points distance.
RadianToAngle converts radian value to angle value.
Range creates a slice of numbers from start with specified count, element step is 1.
RangeWithStep creates a slice of numbers from start to end with specified step.
RoundToFloat round off to n decimal places.
RoundToString round off to n decimal places.
Sin returns the sine of the radian argument.
Sum return sum of passed numbers.
TruncRound round off n decimal places.