artMakeStringPrec15
artMakeStringPrec15(g_anyArg) =>t_argAsString/nil
Description
Converts data of the given data type to a string. The valid data types for the g_anyArg argument include symbol, integer, float, and string. It similar to the function artMakeString, except that it uses the '%.15g' format specification to convert the floating point numbers into strings.
Argument
Value Returned
Examples
artMakeStringPrec15( 2.0 ) => "2.0"
artMakeStringPrec15( 10p ) => "1e-11"
Return to top