diff options
author | Elias Fleckenstein <54945686+EliasFleckenstein03@users.noreply.github.com> | 2021-12-31 15:40:37 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-12-31 15:40:37 +0100 |
commit | 6b5450ce9356e48099a926d1950d9bbfd1db0f6e (patch) | |
tree | 9ed5ca8628564a5469009c7f14e8f7190cb89e58 | |
parent | 121ff5a8923237203e4237f5470ceac49840663d (diff) | |
download | luax-6b5450ce9356e48099a926d1950d9bbfd1db0f6e.tar.xz |
Add info about included functions and code origin
-rw-r--r-- | README.md | 8 |
1 files changed, 7 insertions, 1 deletions
@@ -1,2 +1,8 @@ # luax -Small additions to the lua standard library +Small additions to the lua standard library, mostly stolen from https://github.com/minetest/minetest/blob/master/builtin/common/misc_helpers.lua + +## Included + +- `math.clamp(min, max, v)` +- `string.split(str, delim, include_empty, max_splits, sep_is_pattern)` +- `table.copy(t, seen)` |