Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

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

g_anyArg

Argument of any data type.

Value Returned

t_argAsString

Returns the string representation of the input argument.

nil

Indicates an error.

Examples

artMakeStringPrec15( 2.0 ) => "2.0"
artMakeStringPrec15( 10p ) => "1e-11"

Return to top
 ⠀
X