str.out4
Output a 32-bit value. The value is appended at the end of the string.
method str str.out4 (
str format,
uint val
)
str format,
uint val
)
Parameters
format | The format of the output. It is the same as in the function 'printf' in C programming language. |
val | 32-bit value to be appended. |
Return value
Returns the object which method has been called.
str.out8
Output a 64-bit value. The value is appended at the end of the string.
method str str.out8 (
str format,
ulong val
)
str format,
ulong val
)
Parameters
format | The format of the output. It is the same as in the function 'printf' in C programming language. |
val | 64-bit value to be appended. |
Return value
Returns the object which method has been called.
Related links | Source |