Alessandro Pasotti 7c5db3b307
Update to_string
2025-02-07 07:17:35 +01:00

16 lines
464 B
Plaintext

{
"name": "to_string",
"type": "function",
"groups": ["Conversions", "String"],
"description": "Converts a number to string. The conversion is not locale-aware, see 'format_number' for a locale-aware alternative.",
"arguments": [{
"arg": "number",
"description": "Integer or real value. The number to convert to string."
}],
"examples": [{
"expression": "to_string(1.23)",
"returns": "'1.23'"
}],
"tags": ["converts", "number"]
}