aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/data.lux
blob: 0187c2a51debb26d223ab667a1656ff578416980 (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
(.module:
  [library
   [lux #*
    ["$" documentation (#+ documentation:)]
    [data
     [text (#+ \n)
      ["%" format (#+ format)]]
     [collection
      ["." list]]]]]
  ["." / #_
   ["#." binary]
   ["#." bit]
   ["#." collection]
   ["#." color]
   ["#." format]
   ["#." identity]
   ["#." name]
   ["#." product]
   ["#." sum]
   ["#." text]])

(.def: .public documentation
  (.List $.Module)
  (list.together
   (list /binary.documentation
         /bit.documentation
         /collection.documentation
         /color.documentation
         /format.documentation
         /identity.documentation
         /name.documentation
         /product.documentation
         /sum.documentation
         /text.documentation
         )))