aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/math.lux
blob: c2ae9b908d7dc2f9f8b09b50479d19c7199e78c8 (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
(.require
 [library
  [lux (.except)
   ["$" documentation]
   [data
    [text
     ["%" \\format (.only format)]]
    [collection
     ["[0]" list (.use "[1]#[0]" monoid)]]]]]
 ["[0]" /
  ["[1][0]" modulus]
  ["[1][0]" number]
  ["[1][0]" logic]
  ["[1][0]" random]
  [arithmetic
   ["[1][0]" infix]
   ["[1][0]" modular]]]
 [\\library
  ["[0]" /]])

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

                (all list#composite
                     /infix.documentation
                     /modulus.documentation
                     /modular.documentation
                     /number.documentation
                     /logic.documentation
                     /random.documentation
                     )))