Returns a string representation of a value
See also Lua library functions.
Signature:
stringValue
=
tostring(value)
Arguments:
value
- Any value (value
)
Returns:
stringValue
- String representation of the givenvalue
(ifvalue
is an object with a__tostring
metamethod, that method is used to produce the string representation) (string
)
This function is defined in the Lua standard libraries