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