Some docuemtation updats.

This commit is contained in:
Brad Arant 2025-11-24 13:50:27 -08:00
parent 63916cc32a
commit 61216a2296

View File

@ -172,6 +172,8 @@ operators, as follows:
\subsection{abs}
Returns the absolute value of the given parameter.
\subsection{acos}
Returns to arc-cosine of the given parameter.
@ -182,10 +184,20 @@ Returns to arc-cosine of the given parameter.
\subsection{cos}
\subsection{floor}
\subsection{ceil}
\subsection{max}
Returns the greatest value item from a list of comma seperated values in a
list.
\subsection{min}
Returns the least value item from a list of comma seperated values in
a list.
\subsection{pow}
\subsection{random}
@ -200,7 +212,7 @@ String functions are provided to accelerate the building and parsing of strings
\subsection{concat}
The concat tag is used to assemble a string by concatenating one or more values to formulate the resulting string.
The concat function is used to assemble a string by concatenating one or more values to formulate the resulting string.
@ -208,6 +220,12 @@ The concat tag is used to assemble a string by concatenating one or more values
\subsection{left}
Use the left function to return the number of characters specified in
the second parameter from the parameter passed as the first parameter.
If the number of characters to return is greater than the length of
the forst parameter then the entire parameter is returned.
\subsection{reverse}
\subsection{right}