aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/abstract.lux
blob: 11d0021272c3928f85f575f781e8644419f4d2dd (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
      ["." list]]]]]
  ["." / #_
   ["#." apply]
   ["#." codec]
   ["#." comonad]
   ["#." enum]
   ["#." equivalence]
   ["#." mix]
   ["#." functor]
   ["#." hash]
   ["#." interval]
   ["#." monad]
   ["#." monoid]
   ["#." order]
   ["#." 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
         )))