aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/control.lux
blob: e4bfc043324e3a4d77aa36c839cf8af51d49d722 (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
(.require
 [library
  [lux (.except)
   ["$" documentation (.only documentation:)]
   [data
    [text (.only \n)
     ["%" \\format (.only format)]]
    [collection
     ["[0]" list]]]]]
 ["[0]" /
  ["[1][0]" concatenative]
  ["[1][0]" concurrency]
  ["[1][0]" continuation]
  ["[1][0]" exception]
  ["[1][0]" function]
  ["[1][0]" io]
  ["[1][0]" lazy]
  ["[1][0]" maybe]
  ["[1][0]" parser]
  ["[1][0]" pipe]
  ["[1][0]" reader]
  ["[1][0]" region]
  ["[1][0]" remember]
  ["[1][0]" security]
  ["[1][0]" state]
  ["[1][0]" thread]
  ["[1][0]" try]
  ["[1][0]" writer]
  ])

(.def .public documentation
  (.List $.Module)
  (list.together
   (list /concatenative.documentation
         /concurrency.documentation
         /continuation.documentation
         /exception.documentation
         /function.documentation
         /io.documentation
         /lazy.documentation
         /maybe.documentation
         /parser.documentation
         /pipe.documentation
         /reader.documentation
         /region.documentation
         /remember.documentation
         /security.documentation
         /state.documentation
         /thread.documentation
         /try.documentation
         /writer.documentation
         )))