aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/abstract.lux
blob: 52febba83571ffd8623e887b2e8524acece53ec9 (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
(.require
 [library
  [lux (.except)
   ["$" documentation]
   [data
    [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
         )))