aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/target/lua.lux
blob: c9926ba4e4c7badf7310c854ecf811be3fc2aafb (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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
(.using
  [library
   [lux {"-" char}
    ["$" documentation {"+" documentation:}]
    [data
     [text {"+" \n}
      ["%" format {"+" format}]]
     [collection
      ["[0]" list]]]]]
  [\\library
   ["[0]" /]])

(.def: .public documentation
  (.List $.Module)
  ($.module /._
            ""
            [($.default /.Code)
             ($.default /.equivalence)
             ($.default /.hash)
             ($.default /.manual)
             ($.default /.code)
             ($.default /.Expression)
             ($.default /.Computation)
             ($.default /.Location)
             ($.default /.Statement)
             ($.default /.Literal)
             ($.default /.Var)
             ($.default /.Access)
             ($.default /.Label)
             ($.default /.nil)
             ($.default /.bool)
             ($.default /.int)
             ($.default /.float)
             ($.default /.string)
             ($.default /.multi)
             ($.default /.array)
             ($.default /.table)
             ($.default /.item)
             ($.default /.the)
             ($.default /.length)
             ($.default /.apply/*)
             ($.default /.do)
             ($.default /.=)
             ($.default /.<)
             ($.default /.<=)
             ($.default /.>)
             ($.default /.>=)
             ($.default /.+)
             ($.default /.-)
             ($.default /.*)
             ($.default /.^)
             ($.default /./)
             ($.default /.//)
             ($.default /.%)
             ($.default /.concat)
             ($.default /.or)
             ($.default /.and)
             ($.default /.bit_or)
             ($.default /.bit_and)
             ($.default /.bit_xor)
             ($.default /.bit_shl)
             ($.default /.bit_shr)
             ($.default /.not)
             ($.default /.opposite)
             ($.default /.var)
             ($.default /.label)
             ($.default /.statement)
             ($.default /.then)
             ($.default /.local)
             ($.default /.set)
             ($.default /.let)
             ($.default /.local/1)
             ($.default /.if)
             ($.default /.when)
             ($.default /.while)
             ($.default /.repeat)
             ($.default /.for_in)
             ($.default /.for_step)
             ($.default /.return)
             ($.default /.closure)
             ($.default /.function)
             ($.default /.local_function)
             ($.default /.break)
             ($.default /.set_label)
             ($.default /.go_to)
             ($.default /.cond)
             ($.default /.apply/1)
             ($.default /.apply/2)
             ($.default /.apply/3)
             ($.default /.apply/4)
             ($.default /.apply/5)
             ($.default /.error/1)
             ($.default /.print/1)
             ($.default /.require/1)
             ($.default /.type/1)
             ($.default /.ipairs/1)
             ($.default /.print/2)
             ($.default /.error/2)
             ($.default /.print/3)]
            []))