aboutsummaryrefslogtreecommitdiff
path: root/stdlib/source/documentation/lux/math.lux
blob: dd5783817b02247f91cc5d2d46ae06be86991813 (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
(.using
 [library
  [lux "*"
   ["$" documentation (.only documentation:)]
   [data
    [text
     ["%" format (.only format)]]
    [collection
     ["[0]" list]]]]]
 ["[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 $.Module)
  ($.module /._
            ""
            []
            [/infix.documentation
             /modulus.documentation
             /modular.documentation
             /number.documentation
             /logic.documentation
             /random.documentation]))