Jass documentation Database
JASS Documentation Database REFORGED
Results for the query "R2S" as a "function"
Function R2S
Line: |
2228 |
Location: |
common.j |
Constant? |
no |
Type: |
native |
Arguments: |
real r |
Returns: |
string |
Preview
Extra spaces may have been removed from the original file to show the function in a comfortable way.
Information about R2S
returns a string representation for real r with precision of 3 digits. The real is correctly rounded to nearest to fit within the precision. Raises an error if r is null. Example: R2S(1.12) // 1.120Equivalent to: R2SW(r, 0, 3) and Lua: string.format("%.3f", r)See: R2SW
Page loaded in 0.1142 seconds.
|