aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/abstract.lux
blob: 8138b8443c59cebb89dafe7ffd0479ed12d200eb (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
(.module:
  [library
   [lux "*"
    ["$" documentation {"+" [documentation:]}]
    [data
     [text {"+" [\n]}
      ["%" format {"+" [format]}]]
     [collection
      ["[0]" list]]]]]
  ["[0]" / "_"
   ["[1][0]" apply]
   ["[1][0]" codec]
   ["[1][0]" comonad]
   ["[1][0]" enum]
   ["[1][0]" equivalence]
   ["[1][0]" mix]
   ["[1][0]" functor]
   ["[1][0]" hash]
   ["[1][0]" interval]
   ["[1][0]" monad]
   ["[1][0]" monoid]
   ["[1][0]" order]
   ["[1][0]" predicate]])

(.def: .public documentation
  (.List $.Module)
  (list.together
   (list /apply.documentation
         /codec.documentation
         /comonad.documentation
         /enum.documentation
         /equivalence.documentation
         /mix.documentation
         /functor.documentation
         /hash.documentation
         /interval.documentation
         /monad.documentation
         /monoid.documentation
         /order.documentation
         /predicate.documentation
         )))