Module Concepts
Abstract programming and behavioral concepts used by the library.
Concepts
| STDOUT | When an environment variable _ENV.STDOUT is truthy then any compatible function will call STDOUT(...) instead of log(...). |
| key | Every Lua table maps keys to values. |
| value | Every Lua table maps keys to values. |
Concepts
- STDOUT
-
When an environment variable _ENV.STDOUT is truthy then any compatible
function will call STDOUT(...) instead of log(...). If a function is
compatible is mentioned in each functions description.
Usage:
_ENV.STDOUT = _ENV.print - key
-
Every Lua table maps keys to values.
Usage:
local my_table = {key = 'value'}
- value
-
Every Lua table maps keys to values.
Usage:
local my_table = {['key'] = value}