std.show
Provides functions to show the values of lua-tables in more human-readible formats.
- Author: Edward Jones
- Date: 2021-09-17
show
Construct a string-representation of an object.
- Param
v
: Value for which to construct a string-representation
Returns: A string representation of v
show = (v) -> ...
showp
Construct a prettier string-representation of an object.
- Param
v
: Value for which to construct a string-representation
Returns: A string representation of v
which is slightly prettier than that of show
.
showp = (v) -> ...