Function toHex( value )

Description:
Converts the integer argument to hexadecimal form.
Parameters:
value (long integer)
integer value
Return Value (String):
hexadecimal representation of value
Example:
toHex(42) = "2a"
Signature:
String toHex(long)