aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/control.lux
blob: 3a1f688a9cd18b5d35ead092d6149583a7e6d15d (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
(.module:
  [library
   [lux #*
    ["$" documentation (#+ documentation:)]
    [data
     [text (#+ \n)
      ["%" format (#+ format)]]
     [collection
      ["." list]]]]]
  ["." / #_
   ["#." concatenative]
   ["#." concurrency]
   ["#." continuation]
   ["#." exception]
   ["#." function]
   ["#." io]
   ["#." lazy]
   ["#." maybe]
   ["#." parser]
   ["#." pipe]
   ["#." reader]
   ["#." region]
   ["#." remember]
   ["#." security]
   ["#." state]
   ["#." thread]
   ["#." try]
   ["#." 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
         )))