blob: e600857f42820f88c4c74d4b0d98b6523e9845fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
[assert]
[collectgarbage]
[[.enums]]
enum = 'collect'
description = 'performs a full garbage-collection cycle. This is the default option.'
[[.enums]]
enum = 'isrunning'
description = 'returns a boolean that tells whether the collector is running (i.e., not stopped).'
[[.enums]]
enum = 'count'
description = 'returns the total memory in use by Lua in Kbytes. The value has a fractional part, so that it multiplied by 1024 gives the exact number of bytes in use by Lua (except for overflows).'
[dofile]
[error]
[_G]
description = 'A global variable (not a function) that holds the global environment'
[[.fields]]
field = '_G'
description = 'A global variable (not a function) that holds the global environment'
[getmetatable]
[ipairs]
[load]
[loadfile]
[next]
[pairs]
[pcall]
[print]
[rawequal]
[rawget]
[rawlen]
[rawset]
[select]
[setmetatable]
[tonumber]
[tostring]
[type]
[_VERSION]
[xpcall]
|