aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/meta/static.lux
blob: 51853785ad3781659bd5487f5064e778b50f42b4 (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
53
54
55
56
57
(.require
 [library
  [lux (.except)
   ["$" documentation]
   [data
    [text
     ["%" \\format (.only format)]]
    [collection
     ["[0]" list]]]]]
 [\\library
  ["[0]" /]])

(`` (def .public documentation
      (List $.Documentation)
      (list ($.module /._
                      "")

            (,, (with_template [<name> <type>]
                  [($.definition <name>
                     (%.code (' (<name>
                                 (is <type>
                                     (value generating expression))))))]

                  [/.nat .Nat]
                  [/.int .Int]
                  [/.rev .Rev]
                  [/.frac .Frac]
                  [/.text .Text]
                  ))

            ($.definition /.literal
              ""
              [(/.literal
                (is (-> ??? Code)
                    format)
                (is ???
                    (value generating expression)))])

            (,, (with_template [<name> <type>]
                  [($.definition <name>
                     (%.code (' (is <type>
                                    (<name>)))))]

                  [/.random_nat .Nat]
                  [/.random_int .Int]
                  [/.random_rev .Rev]
                  [/.random_frac .Frac]
                  ))

            ($.definition /.random
              ""
              [(/.random
                (is (-> ??? Code)
                    format)
                (is (Random ???)
                    (random data generator)))])
            )))